adding the user controller for futzing with login bits

This commit is contained in:
Dan Buch
2011-08-09 21:43:23 -04:00
parent 6f9519fce9
commit 7ca80880a8
9 changed files with 60 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
class UserController < ApplicationController
def login
end
def process_login
end
def logout
end
def my_account
end
end