From 7c272296ccb5a88fb23196c7d6a5b40ae98e3ecd Mon Sep 17 00:00:00 2001 From: hukl Date: Sun, 1 Mar 2009 15:33:17 +0100 Subject: created empty user controller --- app/controllers/user_controller.rb | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 app/controllers/user_controller.rb (limited to 'app/controllers/user_controller.rb') diff --git a/app/controllers/user_controller.rb b/app/controllers/user_controller.rb new file mode 100644 index 0000000..b30ac7f --- /dev/null +++ b/app/controllers/user_controller.rb @@ -0,0 +1,23 @@ +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 -- cgit v1.3