(landingPageSlug?: string, useProviderSignup: boolean = false)
| 179 | // AuthService |
| 180 | |
| 181 | public async login(landingPageSlug?: string, useProviderSignup: boolean = false): Promise<void> { |
| 182 | this.ensureInitialized() |
| 183 | return this.authService!.login(landingPageSlug, useProviderSignup) |
| 184 | } |
| 185 | |
| 186 | public async logout(): Promise<void> { |
| 187 | this.ensureInitialized() |
nothing calls this directly
no test coverage detected