Files
devise/test/rails_app/app/controllers/home_controller.rb
Samuel Cochran e75354b3b0 Tests.
2011-06-23 10:44:46 +08:00

26 lines
330 B
Ruby

class HomeController < ApplicationController
def index
end
def private
end
def user_dashboard
end
def admin_dashboard
end
def join
end
def set
session["devise.foo_bar"] = "something"
head :ok
end
def unauthenticated
render :text => "unauthenticated", :status => :unauthorized
end
end