blob: 6f25e7454365cf87037a537fb6ab2ae5872cc3f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
import { Component, OnInit } from '@angular/core';
import { UserProfileService } from 'src/app/shared/services';
import { PluginComponent} from 'src/app/shared/plugin/plugin.component';
@Component({
selector: 'app-dashboard',
templateUrl: './dashboard.component.html',
styleUrls: ['./dashboard.component.scss']
})
export class DashboardComponent implements OnInit {
constructor(private userProfile: UserProfileService) { }
ngOnInit() {
// remove this after portal upgrade is done
this.userProfile.getFunctionalMenuStaticInfo();
}
}
|