2020-05-13 14:41:43 +02:00
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
|
import { NgModule } from '@angular/core';
|
2020-07-03 10:26:43 +02:00
|
|
|
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
|
2020-05-13 14:41:43 +02:00
|
|
|
import { MatButtonModule } from '@angular/material/button';
|
|
|
|
|
import { MatCheckboxModule } from '@angular/material/checkbox';
|
2020-07-06 16:17:06 +02:00
|
|
|
import { MatDialogModule } from '@angular/material/dialog';
|
2020-07-03 10:26:43 +02:00
|
|
|
import { MatFormFieldModule } from '@angular/material/form-field';
|
2020-05-13 14:41:43 +02:00
|
|
|
import { MatIconModule } from '@angular/material/icon';
|
2020-07-03 10:26:43 +02:00
|
|
|
import { MatInputModule } from '@angular/material/input';
|
2020-05-13 14:41:43 +02:00
|
|
|
import { MatMenuModule } from '@angular/material/menu';
|
|
|
|
|
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 { RouterModule } from '@angular/router';
|
|
|
|
|
import { TranslateModule } from '@ngx-translate/core';
|
|
|
|
|
import { HasRoleModule } from 'src/app/directives/has-role/has-role.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 { HasRolePipeModule } from 'src/app/pipes/has-role-pipe.module';
|
|
|
|
|
import { TimestampToDatePipeModule } from 'src/app/pipes/timestamp-to-date-pipe.module';
|
2020-05-13 14:41:43 +02:00
|
|
|
|
2020-07-03 10:26:43 +02:00
|
|
|
import { ProjectRoleDetailComponent } from './project-role-detail/project-role-detail.component';
|
2020-05-13 14:41:43 +02:00
|
|
|
import { ProjectRolesComponent } from './project-roles.component';
|
|
|
|
|
|
2020-07-03 10:26:43 +02:00
|
|
|
|
2020-05-13 14:41:43 +02:00
|
|
|
@NgModule({
|
2020-07-03 10:26:43 +02:00
|
|
|
declarations: [ProjectRolesComponent, ProjectRoleDetailComponent],
|
2020-05-13 14:41:43 +02:00
|
|
|
imports: [
|
|
|
|
|
CommonModule,
|
|
|
|
|
MatButtonModule,
|
|
|
|
|
HasRoleModule,
|
|
|
|
|
MatTableModule,
|
|
|
|
|
MatPaginatorModule,
|
2020-07-06 16:17:06 +02:00
|
|
|
MatDialogModule,
|
2020-07-03 10:26:43 +02:00
|
|
|
MatFormFieldModule,
|
|
|
|
|
FormsModule,
|
|
|
|
|
ReactiveFormsModule,
|
|
|
|
|
MatInputModule,
|
2020-05-13 14:41:43 +02:00
|
|
|
MatIconModule,
|
|
|
|
|
MatProgressSpinnerModule,
|
|
|
|
|
MatCheckboxModule,
|
|
|
|
|
RouterModule,
|
|
|
|
|
MatTooltipModule,
|
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
|
|
|
HasRolePipeModule,
|
2020-05-13 14:41:43 +02:00
|
|
|
TranslateModule,
|
|
|
|
|
MatMenuModule,
|
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
|
|
|
TimestampToDatePipeModule,
|
2020-05-13 14:41:43 +02:00
|
|
|
],
|
|
|
|
|
exports: [
|
|
|
|
|
ProjectRolesComponent,
|
|
|
|
|
],
|
|
|
|
|
})
|
|
|
|
|
export class ProjectRolesModule { }
|