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