mirror of
https://github.com/zitadel/zitadel.git
synced 2025-05-19 18:58:18 +00:00
65 lines
2.8 KiB
TypeScript
65 lines
2.8 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 { MatFormFieldModule } from '@angular/material/form-field';
|
||
|
import { MatIconModule } from '@angular/material/icon';
|
||
|
import { MatPaginatorModule } from '@angular/material/paginator';
|
||
|
import { MatProgressSpinnerModule } from '@angular/material/progress-spinner';
|
||
|
import { MatSelectModule } from '@angular/material/select';
|
||
|
import { MatTableModule } from '@angular/material/table';
|
||
|
import { MatTabsModule } from '@angular/material/tabs';
|
||
|
import { TranslateModule } from '@ngx-translate/core';
|
||
|
import { HasRoleModule } from 'src/app/directives/has-role/has-role.module';
|
||
|
import { CardModule } from 'src/app/modules/card/card.module';
|
||
|
import { ChangesModule } from 'src/app/modules/changes/changes.module';
|
||
|
import { MetaLayoutModule } from 'src/app/modules/meta-layout/meta-layout.module';
|
||
|
import { ProjectContributorsModule } from 'src/app/modules/project-contributors/project-contributors.module';
|
||
|
import { ProjectRolesModule } from 'src/app/modules/project-roles/project-roles.module';
|
||
|
import { UserGrantsModule } from 'src/app/modules/user-grants/user-grants.module';
|
||
|
import { WarnDialogModule } from 'src/app/modules/warn-dialog/warn-dialog.module';
|
||
|
import { HasRolePipeModule } from 'src/app/pipes/has-role-pipe.module';
|
||
|
import { TimestampToDatePipeModule } from 'src/app/pipes/timestamp-to-date-pipe.module';
|
||
|
|
||
|
import { ApplicationGridComponent } from './application-grid/application-grid.component';
|
||
|
import { ApplicationsComponent } from './applications/applications.component';
|
||
|
import { OwnedProjectDetailRoutingModule } from './owned-project-detail-routing.module';
|
||
|
import { OwnedProjectDetailComponent } from './owned-project-detail.component';
|
||
|
import { ProjectGrantsComponent } from './project-grants/project-grants.component';
|
||
|
|
||
|
@NgModule({
|
||
|
declarations: [
|
||
|
OwnedProjectDetailComponent,
|
||
|
ApplicationGridComponent,
|
||
|
ApplicationsComponent,
|
||
|
ProjectGrantsComponent,
|
||
|
],
|
||
|
imports: [
|
||
|
CommonModule,
|
||
|
FormsModule,
|
||
|
OwnedProjectDetailRoutingModule,
|
||
|
TranslateModule,
|
||
|
HasRoleModule,
|
||
|
MatTabsModule,
|
||
|
MatButtonModule,
|
||
|
MatIconModule,
|
||
|
ProjectContributorsModule,
|
||
|
WarnDialogModule,
|
||
|
ProjectRolesModule,
|
||
|
HasRolePipeModule,
|
||
|
UserGrantsModule,
|
||
|
TimestampToDatePipeModule,
|
||
|
MatTableModule,
|
||
|
MatFormFieldModule,
|
||
|
CardModule,
|
||
|
MatPaginatorModule,
|
||
|
MatCheckboxModule,
|
||
|
MatSelectModule,
|
||
|
MatProgressSpinnerModule,
|
||
|
ChangesModule,
|
||
|
MetaLayoutModule,
|
||
|
],
|
||
|
})
|
||
|
export class OwnedProjectDetailModule { }
|