Last active
January 7, 2018 18:20
-
-
Save leenyburger/633bfdcb7b762aec246e98e0d3816e3f 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