about.rb 362 B

1234567891011121314151617
  1. # Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
  2. module Gql::Queries
  3. class Product::About < BaseQuery
  4. description 'Fetch the version of Zammad'
  5. type String, null: false
  6. def self.authorize(_obj, ctx)
  7. VersionPolicy.new(ctx.current_user, nil).show?
  8. end
  9. def resolve(...)
  10. Version.get
  11. end
  12. end
  13. end