Created
November 15, 2022 18:30
-
-
Save darrenterhune/c919ab90ccf975f1f3605cf509fc96b8 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 UsersController < ApplicationController | |
before_action :set_user, only: %i[ show edit update destroy ] | |
# GET /users or /users.json | |
def index | |
@users = User.all | |
end | |
# GET /users/1 or /users/1.json | |
def show | |
end | |
# GET /users/new | |
def new | |
@user = User.new | |
end | |
# GET /users/1/edit | |
def edit | |
end | |
# POST /users or /users.json | |
def create | |
@user = User.new(user_params) | |
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, status: :unprocessable_entity } | |
format.json { render json: @user.errors, status: :unprocessable_entity } | |
end | |
end | |
end | |
# PATCH/PUT /users/1 or /users/1.json | |
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, status: :unprocessable_entity } | |
format.json { render json: @user.errors, status: :unprocessable_entity } | |
end | |
end | |
end | |
# DELETE /users/1 or /users/1.json | |
def destroy | |
@user.destroy | |
respond_to do |format| | |
format.json { head :no_content } | |
end | |
end | |
private | |
# Use callbacks to share common setup or constraints between actions. | |
def set_user | |
@user = User.find(params[:id]) | |
end | |
# Only allow a list of trusted parameters through. | |
def user_params | |
params.require(:user).permit(:name, :email) | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment