mirror of
https://github.com/zitadel/zitadel.git
synced 2025-10-09 11:12:01 +00:00

* init auto linking * prompt handling * working * translations * console * fixes * unify * custom texts * fix tests * linting * fix check of existing user * fix bg translation * set unspecified as default in the form
24 lines
785 B
TypeScript
24 lines
785 B
TypeScript
import { CommonModule } from '@angular/common';
|
|
import { NgModule } from '@angular/core';
|
|
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
|
|
import { MatCheckboxModule } from '@angular/material/checkbox';
|
|
import { MatSelectModule } from '@angular/material/select';
|
|
import { TranslateModule } from '@ngx-translate/core';
|
|
import { InfoSectionModule } from '../info-section/info-section.module';
|
|
import { ProviderOptionsComponent } from './provider-options.component';
|
|
|
|
@NgModule({
|
|
declarations: [ProviderOptionsComponent],
|
|
imports: [
|
|
CommonModule,
|
|
MatCheckboxModule,
|
|
MatSelectModule,
|
|
FormsModule,
|
|
InfoSectionModule,
|
|
ReactiveFormsModule,
|
|
TranslateModule,
|
|
],
|
|
exports: [ProviderOptionsComponent],
|
|
})
|
|
export class ProviderOptionsModule {}
|