2015-03-25 17:49:37 +01:00
|
|
|
class WelcomeController < ApplicationController
|
2015-09-22 07:13:35 +02:00
|
|
|
skip_before_filter :verify_authenticity_token, only: :token_sign_in
|
2015-08-31 14:33:15 +02:00
|
|
|
|
2015-03-25 17:49:37 +01:00
|
|
|
def index
|
|
|
|
end
|
2015-09-22 07:13:35 +02:00
|
|
|
|
|
|
|
def token_sign_in
|
|
|
|
return head(:unauthorized) unless params[:token] == Rails.application.secrets.koelkast_token
|
|
|
|
koelkast = User.find_by(name: "koelkast")
|
|
|
|
sign_in_and_redirect koelkast
|
|
|
|
end
|
2015-03-25 17:49:37 +01:00
|
|
|
end
|