mirror of
https://github.com/wahyd4/ocelots.git
synced 2026-08-09 21:16:18 +10:00
11 lines
251 B
Ruby
11 lines
251 B
Ruby
class TestController < ApplicationController
|
|
skip_before_filter :require_login, :only => :test_login
|
|
|
|
def test_login
|
|
if Rails.env.test? || Rails.env.development?
|
|
session[:email] = "test@gmail.com"
|
|
redirect_to "/"
|
|
end
|
|
end
|
|
end
|