blacklist.rb 462 Bytes
Newer Older
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
1 2 3 4 5
module Gitlab
  module Blacklist
    extend self

    def path
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
      %w(
        admin
        dashboard
        files
        groups
        help
        profile
        projects
        search
        public
        assets
        u
        s
        teams
        merge_requests
        issues
        users
        snippets
        services
        repository
        hooks
        notes
28
        unsubscribes
29
        all
30
        ci
31
      )
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
32 33 34
    end
  end
end