2020-05-13 14:41:43 +02:00
|
|
|
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';
|
feat(console): pinned org list, project grant detail view, state change, i18n, domain dialog, policy refactor, theme fixes, refactor user and projects (#449)
* pinned organisations
* project grant detail, state update, user-list pad
* rm entry components
* members nav, i18n, disable actions on non active
* add org domain dialog
* mv password policy rm to detail view
* prefix pinned orgs for userid, fix collapsed pad
* fix app back navigation
* rem pwd required validator
* fix org item overflow
* routing
* move users modules to users page
* reorganize projects
* remove child init of translate
* hide same preferred loginname
2020-07-13 13:38:49 +02:00
|
|
|
import { TranslateModule } from '@ngx-translate/core';
|
2020-05-13 14:41:43 +02:00
|
|
|
import { HasRoleModule } from 'src/app/directives/has-role/has-role.module';
|
2020-07-01 17:48:34 +02:00
|
|
|
import { AvatarModule } from 'src/app/modules/avatar/avatar.module';
|
2020-05-13 14:41:43 +02:00
|
|
|
import { CardModule } from 'src/app/modules/card/card.module';
|
2020-07-20 15:23:29 +02:00
|
|
|
import { RefreshTableModule } from 'src/app/modules/refresh-table/refresh-table.module';
|
fix(console): cleanup structure, role guard, paginated requests, cleanup policies, toast i18n, view timestamp, preloading strategy, maennchenfindings, fix passwordchange (#483)
* routes, move grid to list comopnent
* rename app list component, move to project sub
* add owned-project-detail child module
* seperate pipes
* set password validators only if needed
* create org initialize without pwd
* no caps
* self xss message
* fix user table
* fix project member paginator
* fix project members pagination, user grant pag
* move project grants, fix imports
* fix owned project detail imports
* use pipe and directives
* ng content bindings, rem custom schemas
* i18n, fix error toast parameter
* toast i18n
* side background
* fix: sequence, add timestamp
* audit
* fix metanav background
* org domain label
* cleanup policy component
* shorten user grant roles, mk cols visible as bind
* move user components, show otp only if available
* preload modules
* fix password change
* fix org create buttons
* class css
2020-07-16 15:13:36 +02:00
|
|
|
import { SharedModule } from 'src/app/modules/shared/shared.module';
|
2020-05-13 14:41:43 +02:00
|
|
|
|
|
|
|
|
import { UserListRoutingModule } from './user-list-routing.module';
|
|
|
|
|
import { UserListComponent } from './user-list.component';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
|
declarations: [
|
|
|
|
|
UserListComponent,
|
|
|
|
|
],
|
|
|
|
|
imports: [
|
2020-07-01 17:48:34 +02:00
|
|
|
AvatarModule,
|
2020-05-13 14:41:43 +02:00
|
|
|
UserListRoutingModule,
|
|
|
|
|
CommonModule,
|
|
|
|
|
FormsModule,
|
|
|
|
|
MatButtonModule,
|
|
|
|
|
MatDialogModule,
|
|
|
|
|
HasRoleModule,
|
|
|
|
|
CardModule,
|
|
|
|
|
MatTableModule,
|
|
|
|
|
MatPaginatorModule,
|
|
|
|
|
MatIconModule,
|
|
|
|
|
MatProgressSpinnerModule,
|
|
|
|
|
MatCheckboxModule,
|
|
|
|
|
MatTooltipModule,
|
feat(console): pinned org list, project grant detail view, state change, i18n, domain dialog, policy refactor, theme fixes, refactor user and projects (#449)
* pinned organisations
* project grant detail, state update, user-list pad
* rm entry components
* members nav, i18n, disable actions on non active
* add org domain dialog
* mv password policy rm to detail view
* prefix pinned orgs for userid, fix collapsed pad
* fix app back navigation
* rem pwd required validator
* fix org item overflow
* routing
* move users modules to users page
* reorganize projects
* remove child init of translate
* hide same preferred loginname
2020-07-13 13:38:49 +02:00
|
|
|
TranslateModule,
|
fix(console): cleanup structure, role guard, paginated requests, cleanup policies, toast i18n, view timestamp, preloading strategy, maennchenfindings, fix passwordchange (#483)
* routes, move grid to list comopnent
* rename app list component, move to project sub
* add owned-project-detail child module
* seperate pipes
* set password validators only if needed
* create org initialize without pwd
* no caps
* self xss message
* fix user table
* fix project member paginator
* fix project members pagination, user grant pag
* move project grants, fix imports
* fix owned project detail imports
* use pipe and directives
* ng content bindings, rem custom schemas
* i18n, fix error toast parameter
* toast i18n
* side background
* fix: sequence, add timestamp
* audit
* fix metanav background
* org domain label
* cleanup policy component
* shorten user grant roles, mk cols visible as bind
* move user components, show otp only if available
* preload modules
* fix password change
* fix org create buttons
* class css
2020-07-16 15:13:36 +02:00
|
|
|
SharedModule,
|
2020-07-20 15:23:29 +02:00
|
|
|
RefreshTableModule,
|
2020-05-13 14:41:43 +02:00
|
|
|
],
|
|
|
|
|
exports: [
|
|
|
|
|
UserListComponent,
|
|
|
|
|
],
|
|
|
|
|
})
|
|
|
|
|
export class UserListModule { }
|