debian-mirror-gitlab/app/models/concerns/protected_branch_access.rb

12 lines
197 B
Ruby
Raw Normal View History

2016-09-13 17:45:13 +05:30
module ProtectedBranchAccess
extend ActiveSupport::Concern
2016-11-03 12:29:30 +05:30
included do
2017-08-17 22:00:37 +05:30
include ProtectedRefAccess
belongs_to :protected_branch
2016-11-03 12:29:30 +05:30
2017-08-17 22:00:37 +05:30
delegate :project, to: :protected_branch
2016-09-13 17:45:13 +05:30
end
end