class Decidim::Meetings::UpdateMeeting

def initialize(form, current_user, meeting)

meeting - The current instance of the page to be updated.
current_user - The current user.
form - The form from which to get the data.

Initializes a UpdateMeeting Command.
def initialize(form, current_user, meeting)
  @form = form
  @current_user = current_user
  @meeting = meeting
end