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