summaryrefslogtreecommitdiff
path: root/app/graphql/types/permission_types/note.rb
blob: a585d3daaa8fd230c82f1f933398f24982545dbc (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, :award_emoji
    end
  end
end