summaryrefslogtreecommitdiff
path: root/lib/gitlab/git_access_wiki.rb
blob: 2c06c4ff1ef0cfb7eaea2c1efcbeebb2f46009ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
module Gitlab
  class GitAccessWiki < GitAccess
    def guest_can_downlod_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 change_access_check(change)
      if user_access.can_do_action?(:create_wiki)
        build_status_object(true)
      else
        build_status_object(false, "You are not allowed to write to this project's wiki.")
      end
    end
  end
end