class Decidim::Meetings::Admin::InviteUserToJoinMeeting

def call

Returns nothing.

- :invalid if the form wasn't valid and we couldn't proceed.
- :ok when everything is valid.

Executes the command. Broadcasts these events:
def call
  return broadcast(:invalid) if form.invalid?
  invite_user
  broadcast(:ok)
end