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

push_access_level.rb « protected_branch « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4345dc4ede4a91afd6277cd82684b8abbde69e2f (plain)
1
2
3
4
5
class ProtectedBranch::PushAccessLevel < ActiveRecord::Base
  belongs_to :protected_branch

  enum access_level: [:masters, :developers]
end