mirror of
https://github.com/zitadel/zitadel.git
synced 2025-06-03 16:28:21 +00:00

* prettier member dialog, iam indicator * changes i18n * fix timestamp conversion, timestamp to date pipe * rm create, update iam policy * add iam policy * add iam section, members component * add iam contributors * gen admin protos * iam member search * update angular * update cdk material * add module for iam members * add iam roles to member dialog * home shortcuts * project view, i18n * lint
33 lines
1004 B
TypeScript
33 lines
1004 B
TypeScript
import { CommonModule } from '@angular/common';
|
|
import { HttpClient } from '@angular/common/http';
|
|
import { NgModule } from '@angular/core';
|
|
import { MatButtonModule } from '@angular/material/button';
|
|
import { MatIconModule } from '@angular/material/icon';
|
|
import { TranslateLoader, TranslateModule } from '@ngx-translate/core';
|
|
import { HttpLoaderFactory } from 'src/app/app.module';
|
|
import { HasRoleModule } from 'src/app/directives/has-role/has-role.module';
|
|
|
|
import { HomeRoutingModule } from './home-routing.module';
|
|
import { HomeComponent } from './home.component';
|
|
|
|
|
|
|
|
@NgModule({
|
|
declarations: [HomeComponent],
|
|
imports: [
|
|
CommonModule,
|
|
MatIconModule,
|
|
HasRoleModule,
|
|
HomeRoutingModule,
|
|
MatButtonModule,
|
|
TranslateModule.forChild({
|
|
loader: {
|
|
provide: TranslateLoader,
|
|
useFactory: HttpLoaderFactory,
|
|
deps: [HttpClient],
|
|
},
|
|
}),
|
|
],
|
|
})
|
|
export class HomeModule { }
|