8 lines
244 B
Ruby
8 lines
244 B
Ruby
|
|
class PagesController < ApplicationController
|
||
|
|
include HighVoltage::StaticPage
|
||
|
|
skip_before_action :redirect_accountless
|
||
|
|
skip_after_action :verify_authorized
|
||
|
|
skip_after_action :verify_policy_scoped
|
||
|
|
skip_before_action :require_login
|
||
|
|
end
|