Class: Decidim::RejectUserGroupJoinRequest
- Inherits:
- 
      Rectify::Command
      
        - Object
- Rectify::Command
- Decidim::RejectUserGroupJoinRequest
 
- Defined in:
- app/commands/decidim/reject_user_group_join_request.rb
Overview
A command with all the business logic to reject a join request to a user group.
Instance Method Summary collapse
- 
  
    
      #call  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Executes the command. 
- 
  
    
      #initialize(membership)  ⇒ RejectUserGroupJoinRequest 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    Public: Initializes the command. 
Constructor Details
#initialize(membership) ⇒ RejectUserGroupJoinRequest
Public: Initializes the command.
membership - the UserGroupMembership to be accepted.
| 10 11 12 | # File 'app/commands/decidim/reject_user_group_join_request.rb', line 10 def initialize(membership) @membership = membership end | 
Instance Method Details
#call ⇒ Object
Executes the command. Broadcasts these events:
- 
:ok when everything is valid. 
- 
:invalid if we couldn’t proceed. 
Returns nothing.
| 20 21 22 23 24 25 26 27 28 29 30 | # File 'app/commands/decidim/reject_user_group_join_request.rb', line 20 def call return broadcast(:invalid) unless membership return broadcast(:invalid) if membership.role.to_s != "requested" transaction do send_notification reject_membership end broadcast(:ok, @user_group) end |