diff options
| author | hukl <contact@smyck.org> | 2009-03-01 15:33:17 +0100 |
|---|---|---|
| committer | hukl <contact@smyck.org> | 2009-03-01 15:33:17 +0100 |
| commit | 7c272296ccb5a88fb23196c7d6a5b40ae98e3ecd (patch) | |
| tree | 03820820e0ba41f1babfa9748f1581cd3f724012 /app/controllers | |
| parent | 9843bfc6f0451ab71b552eb92deeb29a173ae665 (diff) | |
created empty user controller
Diffstat (limited to 'app/controllers')
| -rw-r--r-- | app/controllers/user_controller.rb | 23 |
1 files changed, 23 insertions, 0 deletions
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 @@ | |||
| 1 | class UserController < ApplicationController | ||
| 2 | def index | ||
| 3 | end | ||
| 4 | |||
| 5 | def new | ||
| 6 | end | ||
| 7 | |||
| 8 | def create | ||
| 9 | end | ||
| 10 | |||
| 11 | def edit | ||
| 12 | end | ||
| 13 | |||
| 14 | def update | ||
| 15 | end | ||
| 16 | |||
| 17 | def show | ||
| 18 | end | ||
| 19 | |||
| 20 | def destroy | ||
| 21 | end | ||
| 22 | |||
| 23 | end | ||
