1234567891011121314151617181920212223242526272829 |
- # Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
- class GitLab
- class Credentials
- QUERY = <<-GRAPHQL.freeze
- query {
- currentUser {
- username
- }
- }
- GRAPHQL
- attr_reader :client
- def initialize(client)
- @client = client
- end
- def verify!
- response = client.perform(
- query: GitLab::Credentials::QUERY,
- )
- return if response.dig('data', 'currentUser', 'username').present?
- raise __('Invalid GitLab GraphQL API token')
- end
- end
- end
|