9 lines
154 B
Ruby
9 lines
154 B
Ruby
|
class PagesController < ActionController::Base
|
||
|
|
||
|
include Locomotive::Routing::SiteDispatcher
|
||
|
|
||
|
before_filter :require_site
|
||
|
|
||
|
def show; end
|
||
|
|
||
|
end
|