Welcome to mirror list, hosted at ThFree Co, Russian Federation.

timebox_policy.rb « policies « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 03a1acb93587b1ffdd1fa8fdb6bb476f17d35bdb (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

class TimeboxPolicy < BasePolicy
  # stub permissions policy on None, Any, Upcoming, Started and Current timeboxes

  rule { default }.policy do
    enable :read_iteration
    enable :read_milestone
  end
end