Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface AuthenticationProvider

Our authentication provider should at least contain the following information:

  • The signature of authentication providers from vscode
  • Registration information about the provider (id, label)
  • Provider options (supportsMultipleAccounts)

Additionally, we provide the possibility to sign out of a specific account name.

Hierarchy

  • AuthenticationProvider

Index

Properties

id: string
label: string

An event which fires when the array of sessions has changed, or data within a session has changed.

supportsMultipleAccounts: boolean

Methods

  • hasSessions(): boolean
  • logout(sessionId: string): Promise<void>
  • removeSession(sessionId: string): Thenable<void>
  • signOut(accountName: string): Promise<void>