23d37382da
No external behavior change. This allows `GitHttpController` to set the HTTP status based on the type of error. Alternatively, we could have added an attribute to GitAccessStatus, but this pattern seemed appropriate.
23 lines
628 B
Ruby
23 lines
628 B
Ruby
module Gitlab
|
|
class GitAccessWiki < GitAccess
|
|
ERROR_MESSAGES = {
|
|
write_to_wiki: "You are not allowed to write to this project's wiki."
|
|
}.freeze
|
|
|
|
def guest_can_download_code?
|
|
Guest.can?(:download_wiki_code, project)
|
|
end
|
|
|
|
def user_can_download_code?
|
|
authentication_abilities.include?(:download_code) && user_access.can_do_action?(:download_wiki_code)
|
|
end
|
|
|
|
def check_single_change_access(change)
|
|
if user_access.can_do_action?(:create_wiki)
|
|
build_status_object(true)
|
|
else
|
|
raise UnauthorizedError, ERROR_MESSAGES[:write_to_wiki]
|
|
end
|
|
end
|
|
end
|
|
end
|