Skip to content

Instantly share code, notes, and snippets.

@leenyburger
Created January 7, 2018 21:26
Show Gist options
  • Select an option

  • Save leenyburger/2c3d22abc3d1a14ac46da6942f9b24b7 to your computer and use it in GitHub Desktop.

Select an option

Save leenyburger/2c3d22abc3d1a14ac46da6942f9b24b7 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