Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue #7899 fix srp for assignment #7910

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion src/MCT.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ import ToolbarRegistry from './ui/registries/ToolbarRegistry.js';
import ViewRegistry from './ui/registries/ViewRegistry.js';
import ApplicationRouter from './ui/router/ApplicationRouter.js';
import Browse from './ui/router/Browse.js';

/**
* Open MCT is an extensible web application for building mission
* control user interfaces. This module is itself an instance of
Expand Down Expand Up @@ -274,6 +273,13 @@ export class MCT extends EventEmitter {
*/
this.annotation = new AnnotationAPI(this);

/**
* MCT's annotation API that enables
* Prioritized Notifications
* @type {NotificationAPI}
*/
this.notifications = new NotificationAPI();

// Plugins that are installed by default
this.install(this.plugins.Plot());
this.install(this.plugins.TelemetryTable());
Expand Down
Loading