mirror of
https://github.com/heartcombo/devise.git
synced 2026-01-15 01:38:07 -05:00
10 lines
398 B
Ruby
10 lines
398 B
Ruby
# Filters added to this controller apply to all controllers in the application.
|
|
# Likewise, all the methods added will be available for all controllers.
|
|
|
|
class ApplicationController < ActionController::Base
|
|
protect_from_forgery
|
|
before_filter :current_user, :unless => :devise_controller?
|
|
before_filter :authenticate_user!, :if => :devise_controller?
|
|
respond_to *Mime::SET.map(&:to_sym)
|
|
end
|