Skip to content

Instantly share code, notes, and snippets.

@leenyburger
Last active January 7, 2018 18:20
Show Gist options
  • Select an option

  • Save leenyburger/633bfdcb7b762aec246e98e0d3816e3f to your computer and use it in GitHub Desktop.

Select an option

Save leenyburger/633bfdcb7b762aec246e98e0d3816e3f to your computer and use it in GitHub Desktop.
class MeetupController < ApplicationController
def index
@events = Meetup.new.events
render json: @events, status: :ok
rescue StandardError => e
render json: { errors: e.message }, status: :unprocessable_entity
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment