Allow changing hide_collections setting with the api (#22790)
* Allow changing hide_collections setting with the api This is currently only possible with app/controllers/settings/profiles_controller.rb and is the only difference in the allowed parameter between the two controllers * Fix the lint issue * Use normal indent
This commit is contained in:
		
							parent
							
								
									ff70e50199
								
							
						
					
					
						commit
						f33e22ae4c
					
				
					 1 changed files with 11 additions and 1 deletions
				
			
		|  | @ -21,7 +21,17 @@ class Api::V1::Accounts::CredentialsController < Api::BaseController | |||
|   private | ||||
| 
 | ||||
|   def account_params | ||||
|     params.permit(:display_name, :note, :avatar, :header, :locked, :bot, :discoverable, fields_attributes: [:name, :value]) | ||||
|     params.permit( | ||||
|       :display_name, | ||||
|       :note, | ||||
|       :avatar, | ||||
|       :header, | ||||
|       :locked, | ||||
|       :bot, | ||||
|       :discoverable, | ||||
|       :hide_collections, | ||||
|       fields_attributes: [:name, :value] | ||||
|     ) | ||||
|   end | ||||
| 
 | ||||
|   def user_settings_params | ||||
|  |  | |||
		Reference in a new issue