Class: UffizziCore::Api::Cli::V1::Projects::DeploymentsPolicy
- Inherits:
-
UffizziCore::ApplicationPolicy
- Object
- UffizziCore::ApplicationPolicy
- UffizziCore::Api::Cli::V1::Projects::DeploymentsPolicy
- Defined in:
- app/policies/uffizzi_core/api/cli/v1/projects/deployments_policy.rb
Instance Method Summary collapse
- #create? ⇒ Boolean
- #deploy_containers? ⇒ Boolean
- #destroy? ⇒ Boolean
- #index? ⇒ Boolean
- #show? ⇒ Boolean
- #update? ⇒ Boolean
Instance Method Details
#create? ⇒ Boolean
12 13 14 |
# File 'app/policies/uffizzi_core/api/cli/v1/projects/deployments_policy.rb', line 12 def create? context.user_access_module.admin_or_developer_access_to_project?(context.user, context.project) end |
#deploy_containers? ⇒ Boolean
24 25 26 |
# File 'app/policies/uffizzi_core/api/cli/v1/projects/deployments_policy.rb', line 24 def deploy_containers? context.user_access_module.admin_or_developer_access_to_project?(context.user, context.project) end |
#destroy? ⇒ Boolean
20 21 22 |
# File 'app/policies/uffizzi_core/api/cli/v1/projects/deployments_policy.rb', line 20 def destroy? context.user_access_module.admin_or_developer_access_to_project?(context.user, context.project) end |
#index? ⇒ Boolean
4 5 6 |
# File 'app/policies/uffizzi_core/api/cli/v1/projects/deployments_policy.rb', line 4 def index? context.user_access_module.any_access_to_project?(context.user, context.project) end |
#show? ⇒ Boolean
8 9 10 |
# File 'app/policies/uffizzi_core/api/cli/v1/projects/deployments_policy.rb', line 8 def show? context.user_access_module.any_access_to_project?(context.user, context.project) end |
#update? ⇒ Boolean
16 17 18 |
# File 'app/policies/uffizzi_core/api/cli/v1/projects/deployments_policy.rb', line 16 def update? context.user_access_module.admin_or_developer_access_to_project?(context.user, context.project) end |