Class: LotusAdmin::ApplicationPolicy
- Inherits:
-
Object
- Object
- LotusAdmin::ApplicationPolicy
- Defined in:
- app/policies/lotus_admin/application_policy.rb
Defined Under Namespace
Classes: Scope
Instance Attribute Summary collapse
-
#record ⇒ Object
readonly
Returns the value of attribute record.
-
#user ⇒ Object
readonly
Returns the value of attribute user.
Instance Method Summary collapse
- #create? ⇒ Boolean
- #destroy? ⇒ Boolean
- #edit? ⇒ Boolean
- #index? ⇒ Boolean
-
#initialize(user, record) ⇒ ApplicationPolicy
constructor
A new instance of ApplicationPolicy.
- #new? ⇒ Boolean
- #show? ⇒ Boolean
- #update? ⇒ Boolean
Constructor Details
#initialize(user, record) ⇒ ApplicationPolicy
Returns a new instance of ApplicationPolicy.
5 6 7 8 |
# File 'app/policies/lotus_admin/application_policy.rb', line 5 def initialize(user, record) @user = user @record = record end |
Instance Attribute Details
#record ⇒ Object (readonly)
Returns the value of attribute record.
3 4 5 |
# File 'app/policies/lotus_admin/application_policy.rb', line 3 def record @record end |
#user ⇒ Object (readonly)
Returns the value of attribute user.
3 4 5 |
# File 'app/policies/lotus_admin/application_policy.rb', line 3 def user @user end |
Instance Method Details
#create? ⇒ Boolean
18 19 20 |
# File 'app/policies/lotus_admin/application_policy.rb', line 18 def create? false end |
#destroy? ⇒ Boolean
34 35 36 |
# File 'app/policies/lotus_admin/application_policy.rb', line 34 def destroy? false end |
#edit? ⇒ Boolean
30 31 32 |
# File 'app/policies/lotus_admin/application_policy.rb', line 30 def edit? update? end |
#index? ⇒ Boolean
10 11 12 |
# File 'app/policies/lotus_admin/application_policy.rb', line 10 def index? false end |
#new? ⇒ Boolean
22 23 24 |
# File 'app/policies/lotus_admin/application_policy.rb', line 22 def new? create? end |
#show? ⇒ Boolean
14 15 16 |
# File 'app/policies/lotus_admin/application_policy.rb', line 14 def show? false end |
#update? ⇒ Boolean
26 27 28 |
# File 'app/policies/lotus_admin/application_policy.rb', line 26 def update? false end |