mirror of
https://github.com/zitadel/zitadel.git
synced 2025-11-14 23:04:16 +00:00
* refreshtable component * project grant refresh table * project role refresh, user grant, i18n * lint * auth user mfa table * auth mfa table * rm unused 404 page, add mgmt mfa table * change light accent color * add actions to mfa table * user detail mfa table * clear selection on refresh, bind data length * member table * fix padding mfa table * Update console/src/assets/i18n/en.json Co-authored-by: Florian Forster <florian@caos.ch> * Update console/src/assets/i18n/en.json Co-authored-by: Florian Forster <florian@caos.ch> * z-index, new colors * new senf color Co-authored-by: Florian Forster <florian@caos.ch>
51 lines
1.7 KiB
TypeScript
51 lines
1.7 KiB
TypeScript
import { CommonModule } from '@angular/common';
|
|
import { NgModule } from '@angular/core';
|
|
import { FormsModule } from '@angular/forms';
|
|
import { MatButtonModule } from '@angular/material/button';
|
|
import { MatCheckboxModule } from '@angular/material/checkbox';
|
|
import { MatDialogModule } from '@angular/material/dialog';
|
|
import { MatIconModule } from '@angular/material/icon';
|
|
import { MatPaginatorModule } from '@angular/material/paginator';
|
|
import { MatProgressSpinnerModule } from '@angular/material/progress-spinner';
|
|
import { MatTableModule } from '@angular/material/table';
|
|
import { MatTooltipModule } from '@angular/material/tooltip';
|
|
import { TranslateModule } from '@ngx-translate/core';
|
|
import { HasRoleModule } from 'src/app/directives/has-role/has-role.module';
|
|
import { AvatarModule } from 'src/app/modules/avatar/avatar.module';
|
|
import { CardModule } from 'src/app/modules/card/card.module';
|
|
import { RefreshTableModule } from 'src/app/modules/refresh-table/refresh-table.module';
|
|
import { SharedModule } from 'src/app/modules/shared/shared.module';
|
|
|
|
import { UserListRoutingModule } from './user-list-routing.module';
|
|
import { UserListComponent } from './user-list.component';
|
|
|
|
|
|
@NgModule({
|
|
declarations: [
|
|
UserListComponent,
|
|
],
|
|
imports: [
|
|
AvatarModule,
|
|
UserListRoutingModule,
|
|
CommonModule,
|
|
FormsModule,
|
|
MatButtonModule,
|
|
MatDialogModule,
|
|
HasRoleModule,
|
|
CardModule,
|
|
MatTableModule,
|
|
MatPaginatorModule,
|
|
MatIconModule,
|
|
MatProgressSpinnerModule,
|
|
MatCheckboxModule,
|
|
MatTooltipModule,
|
|
TranslateModule,
|
|
SharedModule,
|
|
RefreshTableModule,
|
|
],
|
|
exports: [
|
|
UserListComponent,
|
|
],
|
|
})
|
|
export class UserListModule { }
|