Sha256: d6c34f29334e6501313a1ab7956abcd92b1097998c67ed3fd838d74a7c64669c

Contents?: true

Size: 797 Bytes

Versions: 3

Compression:

Stored size: 797 Bytes

Contents

# frozen_string_literal: true

module Doorkeeper
  module OAuth
    class TokenResponse
      attr_accessor :token

      def initialize(token)
        @token = token
      end

      def body
        {
          'access_token'  => token.token,
          'token_type'    => token.token_type,
          'expires_in'    => token.expires_in_seconds,
          'refresh_token' => token.refresh_token,
          'scope'         => token.scopes_string,
          'created_at'    => token.created_at.to_i
        }.reject { |_, value| value.blank? }
      end

      def status
        :ok
      end

      def headers
        {
          'Cache-Control' => 'no-store',
          'Pragma' => 'no-cache',
          'Content-Type' => 'application/json; charset=utf-8'
        }
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
doorkeeper-5.0.3 lib/doorkeeper/oauth/token_response.rb
doorkeeper-5.0.2 lib/doorkeeper/oauth/token_response.rb
doorkeeper-5.0.1 lib/doorkeeper/oauth/token_response.rb