gluster-web-interface/app/controllers/application_controller.rb

11 lines
283 B
Ruby
Raw Normal View History

2016-04-25 00:47:31 +00:00
class ApplicationController < ActionController::Base
protect_from_forgery with: :exception
2016-09-11 10:57:07 +00:00
def require_login
unless user_signed_in?
flash[:error] = "Please, Login required to use the service."
redirect_to "/users/sign_in" # halts request cycle
2016-09-23 12:53:19 +00:00
end
end
2016-04-25 00:47:31 +00:00
end