Created
March 4, 2018 02:55
-
-
Save gusrub/10f46c5feb16b08fb141bcddf9c651f7 to your computer and use it in GitHub Desktop.
MVC controller 3
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 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