Created
September 5, 2019 20:24
-
-
Save JajuanX/c0c7ec0000535521e6bb1afdd2bbc870 to your computer and use it in GitHub Desktop.
Refactored Code
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 | |
before_action :user_params, :only [:create, :update] | |
before_action :user_find, :only [:shoe, :edit, :update, :destroy] | |
after_action :slack_notify, :only [:create, :update, :destroy] | |
def index | |
@users = User.all | |
end | |
def show | |
end | |
def new | |
@user = User.new | |
end | |
def edit | |
end | |
def create | |
respond_to do |format| | |
if @user.save | |
format.html { redirect_to @user, notice: 'User was successfully created.' } | |
format.json { render :show, status: :created, location: @user } | |
else | |
format.html { render :new } | |
format.json { render json: @user.errors, status: :unprocessable_entity } | |
end | |
end | |
end | |
def update | |
respond_to do |format| | |
if @user.update(user_params) | |
format.html { redirect_to @user, notice: 'User was successfully updated.' } | |
format.json { render :show, status: :ok, location: @user } | |
else | |
format.html { render :edit } | |
format.json { render json: @user.errors, status: :unprocessable_entity } | |
end | |
end | |
end | |
def destroy | |
@user.destroy | |
respond_to do |format| | |
format.html { redirect_to users_url, notice: 'User was successfully destroyed.' } | |
format.json { head :no_content } | |
end | |
end | |
private | |
def user_params | |
params.require(:user).permit(:username, :email) | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment