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

20 lines
341 B
Ruby
Raw Normal View History

2018-11-20 20:47:30 +05:30
# frozen_string_literal: true
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
2017-09-10 17:25:29 +05:30
def check_access(user)
return false if access_level == Gitlab::Access::NO_ACCESS
super
end
2016-09-13 17:45:13 +05:30
end
end