removed account retrieval logic
parent
27f630c822
commit
f98f7cfa21
|
@ -1,11 +1,4 @@
|
||||||
<globalnav-sidenav
|
<globalnav-sidenav [mycroftUrls]="environment.mycroftUrls">
|
||||||
[mycroftUrls]="environment.mycroftUrls"
|
|
||||||
[user$]="user$"
|
|
||||||
>
|
|
||||||
<!--
|
|
||||||
Inject the marketplace app into the <mat-sidenav-content> component
|
|
||||||
of the global navigation menu library.
|
|
||||||
-->
|
|
||||||
<div appBody id="account-body">
|
<div appBody id="account-body">
|
||||||
<router-outlet></router-outlet>
|
<router-outlet></router-outlet>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -1,14 +1,19 @@
|
||||||
import { Component } from '@angular/core';
|
import { Component, OnInit } from '@angular/core';
|
||||||
|
|
||||||
import { environment } from '../environments/environment';
|
import { environment } from '../environments/environment';
|
||||||
|
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'account-root',
|
selector: 'account-root',
|
||||||
templateUrl: './app.component.html',
|
templateUrl: './app.component.html',
|
||||||
styleUrls: ['./app.component.scss']
|
styleUrls: ['./app.component.scss']
|
||||||
})
|
})
|
||||||
export class AppComponent {
|
export class AppComponent implements OnInit {
|
||||||
public environment = environment;
|
public environment = environment;
|
||||||
title = 'account';
|
title = 'Account';
|
||||||
|
|
||||||
|
constructor() {
|
||||||
|
}
|
||||||
|
|
||||||
|
ngOnInit() {
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue