Update Notification Refactor (#511)
* Replaced profile links to anchors so we can open in new tab if we like * Refactored how update checking works. We now explicitly check and send back on the same API. We have a weekly job that will push an update to the user. * Implemented a changelog tab * Ported over a GA fix for using ' in PR bodies. * Don't check cert for Github
This commit is contained in:
parent
0e48aeebc5
commit
2a76092566
21 changed files with 246 additions and 56 deletions
|
|
@ -16,6 +16,9 @@
|
|||
</ng-container>
|
||||
<ng-container *ngIf="tab.fragment === 'system'">
|
||||
<app-manage-system></app-manage-system>
|
||||
</ng-container>
|
||||
<ng-container *ngIf="tab.fragment === 'changelog'">
|
||||
<app-changelog></app-changelog>
|
||||
</ng-container>
|
||||
</ng-template>
|
||||
</li>
|
||||
|
|
|
|||
|
|
@ -17,7 +17,8 @@ export class DashboardComponent implements OnInit {
|
|||
{title: 'General', fragment: ''},
|
||||
{title: 'Users', fragment: 'users'},
|
||||
{title: 'Libraries', fragment: 'libraries'},
|
||||
{title: 'System', fragment: 'system'}
|
||||
{title: 'System', fragment: 'system'},
|
||||
{title: 'Changelog', fragment: 'changelog'},
|
||||
];
|
||||
counter = this.tabs.length + 1;
|
||||
active = this.tabs[0];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue