12 lines
160 B
Ruby
Executable File
12 lines
160 B
Ruby
Executable File
class SessionsController < ApplicationController
|
|
|
|
skip_before_filter :authenticated, :only => [:new, :create]
|
|
|
|
def new
|
|
end
|
|
|
|
def create
|
|
end
|
|
|
|
end
|