2016-08-16 01:09:13 -04:00
|
|
|
module ProtectedBranchAccess
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
2016-09-06 01:05:34 -04:00
|
|
|
included do
|
2017-04-03 21:59:37 -04:00
|
|
|
include ProtectedRefAccess
|
|
|
|
|
2016-11-29 06:21:50 -05:00
|
|
|
belongs_to :protected_branch
|
2017-04-05 13:59:46 -04:00
|
|
|
|
2016-11-29 06:21:50 -05:00
|
|
|
delegate :project, to: :protected_branch
|
|
|
|
end
|
2016-08-16 01:09:13 -04:00
|
|
|
end
|