Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git_access_wiki.rb « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8672cbc0ec44ad4a276557dfec60faa24836c5ce (plain)
1
2
3
4
5
6
7
8
9
10
11
module Gitlab
  class GitAccessWiki < GitAccess
    def change_access_check(change)
      if user.can?(:create_wiki, project)
        build_status_object(true)
      else
        build_status_object(false, "You are not allowed to write to this project's wiki.")
      end
    end
  end
end