Add openRegistrations attribute to nodeinfo endpoint (#12058)
				
					
				
			This commit is contained in:
		
							parent
							
								
									575dc11cb2
								
							
						
					
					
						commit
						4e1afef6f9
					
				
					 1 changed files with 5 additions and 1 deletions
				
			
		| 
						 | 
					@ -3,7 +3,7 @@
 | 
				
			||||||
class NodeInfo::Serializer < ActiveModel::Serializer
 | 
					class NodeInfo::Serializer < ActiveModel::Serializer
 | 
				
			||||||
  include RoutingHelper
 | 
					  include RoutingHelper
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  attributes :version, :software, :protocols, :usage
 | 
					  attributes :version, :software, :protocols, :usage, :open_registrations
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  def version
 | 
					  def version
 | 
				
			||||||
    '2.0'
 | 
					    '2.0'
 | 
				
			||||||
| 
						 | 
					@ -33,6 +33,10 @@ class NodeInfo::Serializer < ActiveModel::Serializer
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
  end
 | 
					  end
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  def open_registrations
 | 
				
			||||||
 | 
					    Setting.registrations_mode != 'none' && !Rails.configuration.x.single_user_mode
 | 
				
			||||||
 | 
					  end
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  private
 | 
					  private
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  def instance_presenter
 | 
					  def instance_presenter
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		
		Reference in a new issue