8 lines
178 B
Ruby
8 lines
178 B
Ruby
class SiteController < ApplicationController
|
|
before_filter :authorize_web
|
|
before_filter :require_user, :only => [:edit]
|
|
|
|
def export
|
|
render :action => 'index'
|
|
end
|
|
end
|