Class: Decidim::UpdateNotificationsSettings
- Defined in:
- app/commands/decidim/update_notifications_settings.rb
Overview
This command updates the user’s notifications settings.
Instance Method Summary collapse
- #call ⇒ Object
-
#initialize(form) ⇒ UpdateNotificationsSettings
constructor
Updates a user’s notifications settings.
Methods inherited from Command
call, #evaluate, #method_missing, #respond_to_missing?, #transaction, #with_events
Constructor Details
#initialize(form) ⇒ UpdateNotificationsSettings
Updates a user’s notifications settings.
form - The form with the data.
11 12 13 |
# File 'app/commands/decidim/update_notifications_settings.rb', line 11 def initialize(form) @form = form end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class Decidim::Command
Instance Method Details
#call ⇒ Object
15 16 17 18 19 20 21 22 |
# File 'app/commands/decidim/update_notifications_settings.rb', line 15 def call return broadcast(:invalid) unless @form.valid? update_notifications_settings current_user.save! broadcast(:ok, current_user) end |