1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-12-01 12:24:28 +01:00
fab-manager/app/policies/subscription_policy.rb

18 lines
362 B
Ruby
Raw Normal View History

2019-09-10 11:46:14 +02:00
# frozen_string_literal: true
# Check the access policies for API::SubscriptionsController
2016-03-23 18:39:41 +01:00
class SubscriptionPolicy < ApplicationPolicy
2019-09-10 11:46:14 +02:00
include FablabConfiguration
def create?
!fablab_plans_deactivated? && (user.admin? || record.price.zero?)
2019-09-10 11:46:14 +02:00
end
2016-03-23 18:39:41 +01:00
def show?
user.admin? or record.user_id == user.id
2016-03-23 18:39:41 +01:00
end
def update?
user.admin?
2016-03-23 18:39:41 +01:00
end
end