Class: Decidim::Meetings::Admin::ExportMeetingRegistrations

Inherits:
Command
  • Object
show all
Defined in:
decidim-meetings/app/commands/decidim/meetings/admin/export_meeting_registrations.rb

Overview

This command is executed when the user exports the registrations of a Meeting from the admin panel.

Instance Method Summary collapse

Methods inherited from Command

call, #evaluate, #method_missing, #respond_to_missing?, #transaction, #with_events

Constructor Details

#initialize(meeting, format, current_user) ⇒ ExportMeetingRegistrations

meeting - The current instance of the page to be closed. format - a string representing the export format current_user - the user performing the action



12
13
14
15
16
# File 'decidim-meetings/app/commands/decidim/meetings/admin/export_meeting_registrations.rb', line 12

def initialize(meeting, format, current_user)
  @meeting = meeting
  @format = format
  @current_user = current_user
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Decidim::Command

Instance Method Details

#callObject

Exports the meeting registrations.

Broadcasts :ok if successful, :invalid otherwise.



21
22
23
# File 'decidim-meetings/app/commands/decidim/meetings/admin/export_meeting_registrations.rb', line 21

def call
  broadcast(:ok, export_data)
end