🌥️
Patient Cloud
  • README
  • Auth
    • Google Identity
    • Identity Providers
    • Nest Auth Service
  • Microservices
    • NestJS Overview
  • Security
    • API Security
    • Trails
  • Client App Security
  • Development
    • Sentry logging
  • Build
    • Local Build
    • Using Cloud Build
  • Social login
    • Social login
  • NHS
    • NHS Login
  • GraphQL
    • Playground
  • Testing
    • Unit Tests
    • Integration Tests
    • End to End tests
Powered by GitBook
On this page

Was this helpful?

  1. Auth

Nest Auth Service

NestJS backend only keeps users' Google Identity ID in database. Email, phone number and address saved in Google Identity database.

Authentication response object:

{
  id: "string",
  role: "UserRole",
  token: "string",
  type: "string",
  email: "string",
  emailVerified: "boolean",
  displayName: "string",
  photoURL: "string",
}
PreviousIdentity ProvidersNextNestJS Overview

Last updated 4 years ago

Was this helpful?