Skip to content

Instantly share code, notes, and snippets.

@gusrub
Created March 4, 2018 02:55
Show Gist options
  • Select an option

  • Save gusrub/10f46c5feb16b08fb141bcddf9c651f7 to your computer and use it in GitHub Desktop.

Select an option

Save gusrub/10f46c5feb16b08fb141bcddf9c651f7 to your computer and use it in GitHub Desktop.
MVC controller 3
class UsersController < ApplicationController
include UsersHelper
def create
if params[:token].blank?
@user.token = generate_token(@user)
end
if @user.save
send_welcome_email(@user) if params[:send_email]
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