mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-01 12:24:28 +01:00
10 lines
149 B
Ruby
10 lines
149 B
Ruby
class SubscriptionPolicy < ApplicationPolicy
|
|
def show?
|
|
user.admin? or record.user_id == user.id
|
|
end
|
|
|
|
def update?
|
|
user.admin?
|
|
end
|
|
end
|