Module: Rtml::Controller::BeforeFilters

Defined in:
lib/rtml/controller/before_filters.rb

Class Method Summary collapse

Class Method Details

.included(base) ⇒ Object



43
44
45
46
47
48
49
# File 'lib/rtml/controller/before_filters.rb', line 43

def included(base)
  base.instance_eval do
    skip_before_filter :verify_authenticity_token
    before_filter :rtml_format
    before_filter :set_rtml_etag
  end
end