debian-mirror-gitlab/lib/gitlab/git_access_design.rb

36 lines
764 B
Ruby
Raw Normal View History

2020-05-24 23:13:21 +05:30
# frozen_string_literal: true
module Gitlab
class GitAccessDesign < GitAccess
2020-10-24 23:57:45 +05:30
extend ::Gitlab::Utils::Override
2020-05-24 23:13:21 +05:30
def check(_cmd, _changes)
check_protocol!
check_can_create_design!
success_result
end
2020-10-24 23:57:45 +05:30
override :push_ability
def push_ability
:create_design
end
2020-05-24 23:13:21 +05:30
private
def check_protocol!
if protocol != 'web'
raise ::Gitlab::GitAccess::ForbiddenError, "Designs are only accessible using the web interface"
end
end
def check_can_create_design!
2020-10-24 23:57:45 +05:30
unless user_can_push?
2020-05-24 23:13:21 +05:30
raise ::Gitlab::GitAccess::ForbiddenError, "You are not allowed to manage designs of this project"
end
end
end
end
2021-06-08 01:23:25 +05:30
Gitlab::GitAccessDesign.prepend_mod_with('Gitlab::GitAccessDesign')