zammad/lib/github/credentials.rb
2026-01-02 15:41:09 +02:00

29 lines
538 B
Ruby

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