Skip to content
Snippets Groups Projects
Select Git revision
  • 8ccfda354ae66321095ad9626d6b0e2ad230f09d
  • master default protected
  • maj-readme
  • update-budget-msg-2022
  • share-with-metadata
  • explications-resultats-macros-PLF2022
  • plf_fix
  • benoit-cty-master-patch-87290
  • activate-plf-2021
  • stats
  • switch-plf
  • carto
  • adapt-matomo
  • js-to-ts
  • nbre-part-logic
  • add-nbre-part
  • 1.0.0
17 results

Legende.tsx

Blame
  • users.ts 558 B
    export interface SigninPayload {
      pkceCodeVerifier: string
      state?: string
    }
    
    export interface SignoutPayload {
      redirectUrl: string
    }
    
    export interface User {
      email: string // "john@doe.com"
      email_verified: boolean
      family_name: string // "Doe"
      given_name: string // "John"
      last_name: string // "Doe"
      locale: string // "fr"
      name: string // "John Doe"
      preferred_username: string // "jdoe",
      roles?: string[] // [ "offline_access", "default-roles-leximpact", "uma_authorization" ],
      sub: string // "12345678-9abc-def0-1234-56789abcdef0"
    }