mirror of
https://github.com/wanderer-industries/wanderer
synced 2026-05-02 07:20:31 +00:00
b2ae5a33ae
* 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>
33 lines
1.1 KiB
Elixir
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
|