Sha256: a9204e249c61723d8e5df23cb294cc4e5a98d6575163d55447a6e391f63ad1aa
Contents?: true
Size: 756 Bytes
Versions: 1
Compression:
Stored size: 756 Bytes
Contents
# frozen_string_literal: true module Ibrain::Auth::Mutations class GenerateFirebaseTokenMutation < BaseMutation field :result, Boolean, null: true field :token, String, null: true argument :attributes, ::Ibrain::Auth::Types::Input::GenerateFirebaseTokenInput, required: true def resolve(_args) token = repo.generate_custom_token! graphql_returning(token) end private def normalize_parameters attribute_params.permit(:uid) rescue StandardError ActionController::Parameters.new({}) end def repo ::FirebaseRepository.new(nil, normalize_parameters) end def graphql_returning(token) OpenStruct.new( token: token, result: true ) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ibrain-auth-0.2.9 | app/graphql/ibrain/auth/mutations/generate_firebase_token_mutation.rb |