Module: Sns::SiteControllerExt

Defined in:
lib/sns/site_controller_ext.rb

Class Method Summary collapse

Class Method Details

.included(base) ⇒ Object



4
5
6
7
8
9
# File 'lib/sns/site_controller_ext.rb', line 4

def self.included(base)
  base.class_eval do
    skip_before_filter :authenticate
    before_filter :parse_url_for_text_assets, :only => :show_page
  end
end