mirror of
https://github.com/bitwarden/browser
synced 2026-01-04 01:23:57 +00:00
* Moved saving of SSO email outside of browser/desktop code * Clarified comments. * Tests * Refactored login component services to manage state * Fixed input on login component * Fixed tests * Linting * Moved web setting in state into web override * updated tests * Fixed typing. * Fixed type safety issues. * Added comments and renamed for clarity. * Removed method parameters that weren't used * Added clarifying comments * Added more comments. * Removed test that is not necessary on base * Test cleanup * More comments. * Linting * Fixed test. * Fixed base URL * Fixed typechecking. * Type checking * Moved setting of email state to default service * Added comments. * Consolidated SSO URL formatting * Updated comment * Fixed reference. * Fixed missing parameter. * Initialized service. * Added comments * Added initialization of new service * Made email optional due to CLI. * Fixed comment on handleSsoClick. * Added SSO email persistence to v1 component. --------- Co-authored-by: Bernd Schoolmann <mail@quexten.com>
10 lines
513 B
TypeScript
10 lines
513 B
TypeScript
export * from "./pin/pin.service.implementation";
|
|
export * from "./login-email/login-email.service";
|
|
export * from "./login-strategies/login-strategy.service";
|
|
export * from "./user-decryption-options/user-decryption-options.service";
|
|
export * from "./auth-request/auth-request.service";
|
|
export * from "./auth-request/auth-request-api.service";
|
|
export * from "./accounts/lock.service";
|
|
export * from "./login-success-handler/default-login-success-handler.service";
|
|
export * from "./sso-redirect/sso-url.service";
|