Class: Decidim::Admin::UnreportResource
- Inherits:
-
Command
- Object
- Command
- Decidim::Admin::UnreportResource
- Defined in:
- app/commands/decidim/admin/unreport_resource.rb
Overview
A command with all the business logic when a user unreports a resource.
Instance Method Summary collapse
-
#call ⇒ Object
Executes the command.
-
#initialize(reportable, current_user) ⇒ UnreportResource
constructor
Public: Initializes the command.
Constructor Details
#initialize(reportable, current_user) ⇒ UnreportResource
Public: Initializes the command.
reportable - A Decidim::Reportable current_user - the user performing the action
11 12 13 14 |
# File 'app/commands/decidim/admin/unreport_resource.rb', line 11 def initialize(reportable, current_user) @reportable = reportable @current_user = current_user end |
Instance Method Details
#call ⇒ Object
Executes the command. Broadcasts these events:
-
:ok when everything is valid, together with the resource.
-
:invalid if the resource is not reported
Returns nothing.
22 23 24 25 26 27 |
# File 'app/commands/decidim/admin/unreport_resource.rb', line 22 def call return broadcast(:invalid) unless @reportable.reported? unreport! broadcast(:ok, @reportable) end |