12 lines
242 B
Ruby
12 lines
242 B
Ruby
module Accounts
|
|
class PdDeclarationsController < ApplicationController
|
|
layout "site"
|
|
|
|
before_action :authorize_web
|
|
before_action :set_locale
|
|
|
|
authorize_resource :class => :account_pd_declaration
|
|
|
|
def show; end
|
|
end
|
|
end
|