da2a0593ca
Fix lint Disable modern mode Fixes UI fixes Fixes Ignore .po~ files Fixes Fix homepage Fixes Fixes Mix format Fix tests Fix tests (yeah…) Signed-off-by: Thomas Citharel <tcit@tcit.fr>
20 lines
380 B
Elixir
20 lines
380 B
Elixir
defmodule MobilizonWeb.Resolvers.Config do
|
|
@moduledoc """
|
|
Handles the config-related GraphQL calls
|
|
"""
|
|
|
|
import Mobilizon.CommonConfig
|
|
|
|
@doc """
|
|
Get config
|
|
"""
|
|
def get_config(_parent, _params, _context) do
|
|
{:ok,
|
|
%{
|
|
name: instance_name(),
|
|
registrations_open: registrations_open?(),
|
|
description: instance_description()
|
|
}}
|
|
end
|
|
end
|