Files
wanderer/lib/wanderer_app/api.ex
T
Aleksei Chichenkov b2ae5a33ae System comments & refactoring (#253)
* feat(Map): Add widget for comments. Refactor design of Signatures widget. Refactor a lot of code. Add Transition component in ui-kit. Sync versions of react.

---------

Co-authored-by: Dmitry Popov <dmitriypopovsamara@gmail.com>
Co-authored-by: achichenkov <aleksei.chichenkov@telleqt.ai>
2025-03-14 15:34:12 +04:00

33 lines
1.1 KiB
Elixir

defmodule WandererApp.Api do
@moduledoc false
use Ash.Domain
resources do
resource WandererApp.Api.AccessList
resource WandererApp.Api.AccessListMember
resource WandererApp.Api.Character
resource WandererApp.Api.Map
resource WandererApp.Api.MapAccessList
resource WandererApp.Api.MapSolarSystem
resource WandererApp.Api.MapSolarSystemJumps
resource WandererApp.Api.MapChainPassages
resource WandererApp.Api.MapConnection
resource WandererApp.Api.MapState
resource WandererApp.Api.MapSystem
resource WandererApp.Api.MapSystemComment
resource WandererApp.Api.MapSystemSignature
resource WandererApp.Api.MapSystemStructure
resource WandererApp.Api.MapCharacterSettings
resource WandererApp.Api.MapSubscription
resource WandererApp.Api.MapTransaction
resource WandererApp.Api.MapUserSettings
resource WandererApp.Api.User
resource WandererApp.Api.ShipTypeInfo
resource WandererApp.Api.UserActivity
resource WandererApp.Api.UserTransaction
resource WandererApp.Api.CorpWalletTransaction
resource WandererApp.Api.License
end
end