From f2132f98f96c89ed588a4f7757ed8c777b1b0cdb Mon Sep 17 00:00:00 2001 From: 24c02 <163450896+24c02@users.noreply.github.com> Date: Sat, 7 Feb 2026 19:14:48 -0500 Subject: [PATCH] why was that still there >_< --- app/controllers/users_controller.rb | 70 ----------------------------- config/routes.rb | 1 - 2 files changed, 71 deletions(-) delete mode 100644 app/controllers/users_controller.rb diff --git a/app/controllers/users_controller.rb b/app/controllers/users_controller.rb deleted file mode 100644 index 341554f..0000000 --- a/app/controllers/users_controller.rb +++ /dev/null @@ -1,70 +0,0 @@ -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.html { redirect_to users_path, status: :see_other, notice: "User was successfully destroyed." } - 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.expect(:id)) - end - - # Only allow a list of trusted parameters through. - def user_params - params.expect(user: [ :slack_id, :email, :is_admin ]) - end -end diff --git a/config/routes.rb b/config/routes.rb index d9b7f82..a699b1e 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -566,7 +566,6 @@ Rails.application.routes.draw do end resources :skus end - resources :users resources :return_addresses do member do post :set_as_home