Created
January 7, 2018 21:26
-
-
Save leenyburger/2c3d22abc3d1a14ac46da6942f9b24b7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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