Add registrations attribute to instance entity in REST API (#10060)
Fix #9350
This commit is contained in:
		
							parent
							
								
									80388a3ffe
								
							
						
					
					
						commit
						a006d4afbe
					
				
					 1 changed files with 5 additions and 1 deletions
				
			
		|  | @ -5,7 +5,7 @@ class REST::InstanceSerializer < ActiveModel::Serializer | |||
| 
 | ||||
|   attributes :uri, :title, :description, :email, | ||||
|              :version, :urls, :stats, :thumbnail, | ||||
|              :languages | ||||
|              :languages, :registrations | ||||
| 
 | ||||
|   has_one :contact_account, serializer: REST::AccountSerializer | ||||
| 
 | ||||
|  | @ -51,6 +51,10 @@ class REST::InstanceSerializer < ActiveModel::Serializer | |||
|     [I18n.default_locale] | ||||
|   end | ||||
| 
 | ||||
|   def registrations | ||||
|     Setting.open_registrations && !Rails.configuration.x.single_user_mode | ||||
|   end | ||||
| 
 | ||||
|   private | ||||
| 
 | ||||
|   def instance_presenter | ||||
|  |  | |||
		Reference in a new issue