Sha256: f6e768fe001769f13bd5a77d7bfb248ef707682ccc9438598b706816c1cf5be6
Contents?: true
Size: 404 Bytes
Versions: 2
Compression:
Stored size: 404 Bytes
Contents
# frozen_string_literal: true require 'graphql' module Types class OAuthClient < Types::BaseObject description 'An OAuth client used to consume Osso SAML users' implements GraphQL::Types::Relay::Node global_id_field :gid field :id, ID, null: false field :name, String, null: false field :client_id, String, null: false field :client_secret, String, null: false end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
osso-0.0.3.2 | lib/osso/graphql/types/oauth_client.rb |
osso-0.0.3.1 | lib/osso/graphql/types/oauth_client.rb |