Class: Decidim::Initiatives::ApproveMembershipRequest
- Inherits:
-
Command
- Object
- Command
- Decidim::Initiatives::ApproveMembershipRequest
- Defined in:
- app/commands/decidim/initiatives/approve_membership_request.rb
Overview
A command with all the business logic that creates a new initiative.
Instance Method Summary collapse
-
#call ⇒ Object
Executes the command.
-
#initialize(membership_request) ⇒ ApproveMembershipRequest
constructor
Public: Initializes the command.
Constructor Details
#initialize(membership_request) ⇒ ApproveMembershipRequest
Public: Initializes the command.
membership_request - A pending committee member
10 11 12 |
# File 'app/commands/decidim/initiatives/approve_membership_request.rb', line 10 def initialize(membership_request) @membership_request = membership_request end |
Instance Method Details
#call ⇒ Object
Executes the command. Broadcasts these events:
-
:ok when everything is valid.
Returns nothing.
19 20 21 22 23 24 |
# File 'app/commands/decidim/initiatives/approve_membership_request.rb', line 19 def call @membership_request.accepted! notify_applicant broadcast(:ok, @membership_request) end |