Class: Decidim::Verifications::RevokeAllAuthorizations
- Inherits:
-
Command
- Object
- Command
- Decidim::Verifications::RevokeAllAuthorizations
- Defined in:
- app/commands/decidim/verifications/revoke_all_authorizations.rb
Overview
A command to revoke authorizations
Instance Method Summary collapse
-
#call ⇒ Object
Executes the command.
-
#initialize(organization, current_user) ⇒ RevokeAllAuthorizations
constructor
Public: Initializes the command.
Constructor Details
#initialize(organization, current_user) ⇒ RevokeAllAuthorizations
Public: Initializes the command.
organization - Organization object. current_user - The current user.
11 12 13 14 |
# File 'app/commands/decidim/verifications/revoke_all_authorizations.rb', line 11 def initialize(organization, current_user) @organization = organization @current_user = current_user end |
Instance Method Details
#call ⇒ Object
Executes the command. Broadcasts these events:
-
:ok when everything is valid.
-
:invalid if the handler was not valid and we could not proceed.
Returns nothing.
22 23 24 25 26 27 28 |
# File 'app/commands/decidim/verifications/revoke_all_authorizations.rb', line 22 def call return broadcast(:invalid) unless @organization RevokeAllAuthorizationsJob.perform_later(organization, current_user) broadcast(:ok) end |