2018-08-03 13:22:24 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-08-16 01:09:13 -04:00
|
|
|
module ProtectedBranchAccess
|
|
|
|
extend ActiveSupport::Concern
|
2018-08-30 14:49:26 -04:00
|
|
|
include ProtectedRefAccess
|
2016-08-16 01:09:13 -04:00
|
|
|
|
2016-09-06 01:05:34 -04:00
|
|
|
included do
|
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
|
2018-08-30 14:49:26 -04:00
|
|
|
end
|
2017-05-10 04:46:50 -04:00
|
|
|
|
2018-08-30 14:49:26 -04:00
|
|
|
def check_access(user)
|
|
|
|
return false if access_level == Gitlab::Access::NO_ACCESS
|
2017-05-10 04:46:50 -04:00
|
|
|
|
2018-08-30 14:49:26 -04:00
|
|
|
super
|
2016-11-29 06:21:50 -05:00
|
|
|
end
|
2016-08-16 01:09:13 -04:00
|
|
|
end
|