Add `openRegistrations` attribute to nodeinfo endpoint (#12058)

lolsob-rspec
Eugen Rochko 2019-10-02 21:02:48 +02:00 committed by GitHub
parent 1db0719dbb
commit 37f09d3ace
1 changed files with 5 additions and 1 deletions

View File

@ -3,7 +3,7 @@
class NodeInfo::Serializer < ActiveModel::Serializer
include RoutingHelper
attributes :version, :software, :protocols, :usage
attributes :version, :software, :protocols, :usage, :open_registrations
def version
'2.0'
@ -33,6 +33,10 @@ class NodeInfo::Serializer < ActiveModel::Serializer
}
end
def open_registrations
Setting.registrations_mode != 'none' && !Rails.configuration.x.single_user_mode
end
private
def instance_presenter