Files
railsgoat/app/controllers/sessions_controller.rb
T
2013-04-24 21:17:02 -04:00

12 lines
160 B
Ruby
Executable File

class SessionsController < ApplicationController
skip_before_filter :authenticated, :only => [:new, :create]
def new
end
def create
end
end