added a correct registration page

This commit is contained in:
Ken Johnson
2013-04-24 21:17:02 -04:00
parent c003bd8a9a
commit 84eec1e24b
5 changed files with 59 additions and 4 deletions
+4 -1
View File
@@ -1,8 +1,11 @@
class SessionsController < ApplicationController
skip_before_filter :authenticated, :only => [:new]
skip_before_filter :authenticated, :only => [:new, :create]
def new
end
def create
end
end