mirror of
https://github.com/bitwarden/browser
synced 2025-12-20 10:13:31 +00:00
* remove infinite scroll, use virtual scroll instead * use TableDataSource for search * allow sorting by name * replacing PlatformUtilsService.showToast with ToastService * misc FIXMEs
26 lines
925 B
TypeScript
26 lines
925 B
TypeScript
import { ScrollingModule } from "@angular/cdk/scrolling";
|
|
import { NgModule } from "@angular/core";
|
|
|
|
import { LooseComponentsModule } from "../../shared";
|
|
|
|
import { CoreOrganizationModule } from "./core";
|
|
import { GroupAddEditComponent } from "./manage/group-add-edit.component";
|
|
import { GroupsComponent } from "./manage/groups.component";
|
|
import { NewGroupsComponent } from "./manage/new-groups.component";
|
|
import { OrganizationsRoutingModule } from "./organization-routing.module";
|
|
import { SharedOrganizationModule } from "./shared";
|
|
import { AccessSelectorModule } from "./shared/components/access-selector";
|
|
|
|
@NgModule({
|
|
imports: [
|
|
SharedOrganizationModule,
|
|
AccessSelectorModule,
|
|
CoreOrganizationModule,
|
|
OrganizationsRoutingModule,
|
|
LooseComponentsModule,
|
|
ScrollingModule,
|
|
],
|
|
declarations: [GroupsComponent, NewGroupsComponent, GroupAddEditComponent],
|
|
})
|
|
export class OrganizationModule {}
|