Class: Decidim::UserInterestsController
- Inherits:
 - 
      ApplicationController
      
        
- Object
 - DecidimController
 - ApplicationController
 - Decidim::UserInterestsController
 
 
- Includes:
 - UserProfile
 
- Defined in:
 - app/controllers/decidim/user_interests_controller.rb
 
Overview
The controller to handle the user’s interests page.
Instance Method Summary collapse
Methods included from UserProfile
#available_verification_workflows
Methods included from UserGroups
Methods included from UserBlockedChecker
#check_user_block_status, #check_user_not_blocked
Methods included from NeedsSnippets
Methods included from Headers::HttpCachingDisabler
Methods included from HasStoredPath
#skip_store_location?, #store_current_location
Methods included from TranslatableAttributes
Methods included from RegistersPermissions
Methods included from NeedsOrganization
enhance_controller, extended, included
Instance Method Details
#show ⇒ Object
      8 9 10 11  | 
    
      # File 'app/controllers/decidim/user_interests_controller.rb', line 8 def show (:read, :user, current_user:) @user_interests = form(UserInterestsForm).from_model(current_user) end  | 
  
#update ⇒ Object
      13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28  | 
    
      # File 'app/controllers/decidim/user_interests_controller.rb', line 13 def update (:update, :user, current_user:) @user_interests = form(UserInterestsForm).from_params(params) UpdateUserInterests.call(@user_interests) do on(:ok) do flash.keep[:notice] = t("user_interests.update.success", scope: "decidim") end on(:invalid) do flash.keep[:alert] = t("user_interests.update.error", scope: "decidim") end end redirect_to action: :show end  |