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

note.rb « permission_types « types « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 923f2b660fef5a8a5fcd60d549dfd0d0b1242c11 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

module Types
  module PermissionTypes
    class Note < BasePermissionType
      graphql_name 'NotePermissions'

      abilities :read_note, :create_note, :admin_note, :resolve_note, :reposition_note, :award_emoji
    end
  end
end