summaryrefslogtreecommitdiff
path: root/app/graphql/types/permission_types/timelog.rb
blob: c35f3101e3905ad8a9044a13b824fc4a24100500 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

module Types
  module PermissionTypes
    class Timelog < BasePermissionType
      graphql_name 'TimelogPermissions'

      abilities :admin_timelog
    end
  end
end