2020-01-26 20:34:25 +01:00
|
|
|
defmodule Mobilizon.GraphQL.Schema.ConfigType do
|
2019-03-22 10:53:38 +01:00
|
|
|
@moduledoc """
|
|
|
|
Schema representation for User
|
|
|
|
"""
|
|
|
|
use Absinthe.Schema.Notation
|
|
|
|
|
2020-01-26 20:34:25 +01:00
|
|
|
alias Mobilizon.GraphQL.Resolvers.Config
|
2019-03-22 10:53:38 +01:00
|
|
|
|
|
|
|
@desc "A config object"
|
|
|
|
object :config do
|
|
|
|
# Instance name
|
|
|
|
field(:name, :string)
|
2019-04-03 17:29:03 +02:00
|
|
|
field(:description, :string)
|
2019-03-22 10:53:38 +01:00
|
|
|
|
|
|
|
field(:registrations_open, :boolean)
|
2019-12-17 12:09:24 +01:00
|
|
|
field(:registrations_whitelist, :boolean)
|
2019-11-21 16:07:43 +01:00
|
|
|
field(:demo_mode, :boolean)
|
2019-11-08 19:37:14 +01:00
|
|
|
field(:country_code, :string)
|
|
|
|
field(:location, :lonlat)
|
2019-11-20 13:49:57 +01:00
|
|
|
field(:geocoding, :geocoding)
|
|
|
|
field(:maps, :maps)
|
2019-12-20 13:04:34 +01:00
|
|
|
field(:anonymous, :anonymous)
|
|
|
|
|
|
|
|
field(:terms, :terms, description: "The instance's terms") do
|
|
|
|
arg(:locale, :string, default_value: "en")
|
|
|
|
resolve(&Config.terms/3)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
object :terms do
|
|
|
|
field(:url, :string)
|
|
|
|
field(:type, :instance_terms_type)
|
|
|
|
field(:body_html, :string)
|
2019-11-08 19:37:14 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
object :lonlat do
|
|
|
|
field(:longitude, :float)
|
|
|
|
field(:latitude, :float)
|
|
|
|
field(:accuracy_radius, :integer)
|
2019-03-22 10:53:38 +01:00
|
|
|
end
|
|
|
|
|
2019-11-20 13:49:57 +01:00
|
|
|
object :geocoding do
|
|
|
|
field(:autocomplete, :boolean)
|
|
|
|
field(:provider, :string)
|
|
|
|
end
|
|
|
|
|
|
|
|
object :maps do
|
|
|
|
field(:tiles, :tiles)
|
|
|
|
end
|
|
|
|
|
|
|
|
object :tiles do
|
|
|
|
field(:endpoint, :string)
|
|
|
|
field(:attribution, :string)
|
|
|
|
end
|
|
|
|
|
2019-12-20 13:04:34 +01:00
|
|
|
object :anonymous do
|
|
|
|
field(:participation, :anonymous_participation)
|
|
|
|
field(:event_creation, :anonymous_event_creation)
|
|
|
|
field(:actor_id, :id)
|
|
|
|
end
|
|
|
|
|
|
|
|
object :anonymous_participation do
|
|
|
|
field(:allowed, :boolean)
|
|
|
|
field(:validation, :anonymous_participation_validation)
|
|
|
|
end
|
|
|
|
|
|
|
|
object :anonymous_participation_validation do
|
|
|
|
field(:email, :anonymous_participation_validation_email)
|
|
|
|
field(:captcha, :anonymous_participation_validation_captcha)
|
|
|
|
end
|
|
|
|
|
|
|
|
object :anonymous_participation_validation_email do
|
|
|
|
field(:enabled, :boolean)
|
|
|
|
field(:confirmation_required, :boolean)
|
|
|
|
end
|
|
|
|
|
|
|
|
object :anonymous_participation_validation_captcha do
|
|
|
|
field(:enabled, :boolean)
|
|
|
|
end
|
|
|
|
|
|
|
|
object :anonymous_event_creation do
|
|
|
|
field(:allowed, :boolean)
|
|
|
|
field(:validation, :anonymous_event_creation_validation)
|
|
|
|
end
|
|
|
|
|
|
|
|
object :anonymous_event_creation_validation do
|
|
|
|
field(:email, :anonymous_event_creation_validation_email)
|
|
|
|
field(:captcha, :anonymous_event_creation_validation_captcha)
|
|
|
|
end
|
|
|
|
|
|
|
|
object :anonymous_event_creation_validation_email do
|
|
|
|
field(:enabled, :boolean)
|
|
|
|
field(:confirmation_required, :boolean)
|
|
|
|
end
|
|
|
|
|
|
|
|
object :anonymous_event_creation_validation_captcha do
|
|
|
|
field(:enabled, :boolean)
|
|
|
|
end
|
|
|
|
|
2019-03-22 10:53:38 +01:00
|
|
|
object :config_queries do
|
|
|
|
@desc "Get the instance config"
|
|
|
|
field :config, :config do
|
|
|
|
resolve(&Config.get_config/3)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|