mirror of
https://github.com/zitadel/zitadel.git
synced 2025-11-16 00:55:01 +00:00
* fix: console onboarding styles and behavior, i18n * action-row classes * fix: only consider real user events in the onboarding view (#5617) * fix(onboarding): only human events * explicitly exclude system api events --------- Co-authored-by: Max Peintner <max@caos.ch> --------- Co-authored-by: Elio Bischof <eliobischof@gmail.com> Co-authored-by: Elio Bischof <elio@zitadel.com>
18 lines
610 B
TypeScript
18 lines
610 B
TypeScript
import { Component } from '@angular/core';
|
|
import { AdminService } from 'src/app/services/admin.service';
|
|
import { ThemeService } from 'src/app/services/theme.service';
|
|
import { ONBOARDING_EVENTS } from 'src/app/utils/onboarding';
|
|
|
|
@Component({
|
|
selector: 'cnsl-onboarding',
|
|
templateUrl: './onboarding.component.html',
|
|
styleUrls: ['./onboarding.component.scss'],
|
|
})
|
|
export class OnboardingComponent {
|
|
public actions = this.adminService.progressEvents;
|
|
|
|
constructor(public adminService: AdminService, public themeService: ThemeService) {
|
|
this.adminService.loadEvents.next(ONBOARDING_EVENTS);
|
|
}
|
|
}
|