mirror of
https://github.com/zitadel/zitadel.git
synced 2025-06-01 23:28:19 +00:00

* es lint * modify tsconfig, auto lint some stuff * lint * lint * lint * lint * html ts lint * lint * lint, tsconfig * fix project delete, state table * eslint config, remove cnslHint directive * mfa selector, info row fixes * lint * fix login policy, granted orgs table state, lint Co-authored-by: Florian Forster <florian@caos.ch>
15 lines
479 B
TypeScript
15 lines
479 B
TypeScript
import { Component, Input } from '@angular/core';
|
|
import { OIDCAppType } from 'src/app/proto/generated/zitadel/app_pb';
|
|
|
|
@Component({
|
|
selector: 'cnsl-app-card',
|
|
templateUrl: './app-card.component.html',
|
|
styleUrls: ['./app-card.component.scss'],
|
|
})
|
|
export class AppCardComponent {
|
|
@Input() public outline: boolean = false;
|
|
@Input() public type: OIDCAppType | undefined = undefined;
|
|
@Input() public isApiApp: boolean = false;
|
|
public OIDCAppType: any = OIDCAppType;
|
|
}
|