summaryrefslogtreecommitdiff
path: root/app/controllers/user_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/user_controller.rb')
-rw-r--r--app/controllers/user_controller.rb23
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 @@
1class 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
23end