Browse Source

Add contact_account and languages to instance API (#6574)

pull/4/head
Eugen Rochko 6 years ago
committed by GitHub
parent
commit
a3c4138197
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 1 deletions
  1. +10
    -1
      app/serializers/rest/instance_serializer.rb

+ 10
- 1
app/serializers/rest/instance_serializer.rb View File

@ -4,7 +4,12 @@ class REST::InstanceSerializer < ActiveModel::Serializer
include RoutingHelper
attributes :uri, :title, :description, :email,
:version, :urls, :stats, :thumbnail
:version, :urls, :stats, :thumbnail,
:languages
has_one :contact_account, serializer: REST::AccountSerializer
delegate :contact_account, to: :instance_presenter
def uri
Rails.configuration.x.local_domain
@ -42,6 +47,10 @@ class REST::InstanceSerializer < ActiveModel::Serializer
{ streaming_api: Rails.configuration.x.streaming_api_base_url }
end
def languages
[ENV.fetch('DEFAULT_LOCALE', I18n.default_locale)]
end
private
def instance_presenter

Loading…
Cancel
Save