mirror of
https://github.com/zitadel/zitadel.git
synced 2025-05-23 14:08:19 +00:00

* new console * move npm ci to angular build * rel path for assets * local grpc copy * login policy, rm clear views, features rel path * lock Co-authored-by: Livio Amstutz <livio.a@gmail.com>
12 lines
272 B
TypeScript
12 lines
272 B
TypeScript
import { CommonModule } from '@angular/common';
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import { BackDirective } from './back.directive';
|
|
|
|
@NgModule({
|
|
declarations: [BackDirective],
|
|
imports: [CommonModule],
|
|
exports: [BackDirective],
|
|
})
|
|
export class BackModule {}
|