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

19 lines
330 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
2018-12-05 23:21:45 +05:30
include ProtectedRefAccess
2016-09-13 17:45:13 +05:30
2016-11-03 12:29:30 +05:30
included do
2017-08-17 22:00:37 +05:30
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
2018-12-05 23:21:45 +05:30
end
2017-09-10 17:25:29 +05:30
2018-12-05 23:21:45 +05:30
def check_access(user)
return false if access_level == Gitlab::Access::NO_ACCESS
2017-09-10 17:25:29 +05:30
2018-12-05 23:21:45 +05:30
super
2016-09-13 17:45:13 +05:30
end
end