From 294d058be007c74d2826c53135fb55e5ec885039 Mon Sep 17 00:00:00 2001 From: hukl Date: Sun, 1 Mar 2009 15:38:27 +0100 Subject: renamed user to users controller --- app/controllers/user_controller.rb | 23 ----------------------- app/controllers/users_controller.rb | 23 +++++++++++++++++++++++ 2 files changed, 23 insertions(+), 23 deletions(-) delete mode 100644 app/controllers/user_controller.rb create mode 100644 app/controllers/users_controller.rb (limited to 'app/controllers') diff --git a/app/controllers/user_controller.rb b/app/controllers/user_controller.rb deleted file mode 100644 index b30ac7f..0000000 --- a/app/controllers/user_controller.rb +++ /dev/null @@ -1,23 +0,0 @@ -class UserController < ApplicationController - def index - end - - def new - end - - def create - end - - def edit - end - - def update - end - - def show - end - - def destroy - end - -end diff --git a/app/controllers/users_controller.rb b/app/controllers/users_controller.rb new file mode 100644 index 0000000..77ac9ea --- /dev/null +++ b/app/controllers/users_controller.rb @@ -0,0 +1,23 @@ +class UsersController < ApplicationController + def index + end + + def new + end + + def create + end + + def edit + end + + def update + end + + def show + end + + def destroy + end + +end -- cgit v1.3