mirror of
https://github.com/bitwarden/browser
synced 2025-12-13 14:53:33 +00:00
* use deep linked url for org invite instead of separate state * remove organization invite state & fix tests * clear login redirect for SSO JIT users since they are accepted when setting MP * create accept org invite service and consolidate components in module * finish switch to accept org invite service * move logic to accept org service * the rest of the owl * clear org invite along with deep linked route * pr feedback * fix test and add error to catch null invite * pr feedback * clear stored invite if it doesn't match provided one
13 lines
385 B
TypeScript
13 lines
385 B
TypeScript
import { NgModule } from "@angular/core";
|
|
|
|
import { AcceptOrganizationInviteModule } from "./organization-invite/accept-organization.module";
|
|
import { AuthSettingsModule } from "./settings/settings.module";
|
|
|
|
@NgModule({
|
|
imports: [AuthSettingsModule, AcceptOrganizationInviteModule],
|
|
declarations: [],
|
|
providers: [],
|
|
exports: [AuthSettingsModule],
|
|
})
|
|
export class AuthModule {}
|