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?
|
2019-09-11 11:51:04 +02:00
|
|
|
!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?
|
2019-01-14 12:57:31 +01:00
|
|
|
user.admin? or record.user_id == user.id
|
2016-03-23 18:39:41 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def update?
|
2019-01-14 12:57:31 +01:00
|
|
|
user.admin?
|
2016-03-23 18:39:41 +01:00
|
|
|
end
|
|
|
|
end
|