online_notifications.rb 378 B

1234567891011121314
  1. # Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
  2. module Gql::Queries
  3. class OnlineNotifications < BaseQuery
  4. description 'Online notifications for a given user'
  5. type Gql::Types::OnlineNotificationType.connection_type, null: false
  6. def resolve(...)
  7. OnlineNotification.list(context.current_user, access: 'ignore')
  8. end
  9. end
  10. end