Skip to content

Instantly share code, notes, and snippets.

@gusrub
Created March 4, 2018 02:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gusrub/19c58a2951ce5e12cfeb4cdce4db7a31 to your computer and use it in GitHub Desktop.
Save gusrub/19c58a2951ce5e12cfeb4cdce4db7a31 to your computer and use it in GitHub Desktop.
MVC services demo 1
class UsersController < ApplicationController
def create
if @user.save
render json: @user, status: 200
else
render json @user.errors, status: 400
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment