[UserAPI] [UserIndicator Plugin] [ExampleUserProvider Plugin] New user api and related functionality (#4538)

* Implements User API and example user plugin

Co-authored-by: John Hill <john.c.hill@nasa.gov>
Co-authored-by: Charles Hacskaylo <charlesh88@gmail.com>
Co-authored-by: Andrew Henry <akhenry@gmail.com>
This commit is contained in:
Jamie V
2022-01-20 13:56:17 -08:00
committed by GitHub
parent b1cffd0df3
commit e14b7cd0e2
17 changed files with 808 additions and 14 deletions

View File

@@ -33,7 +33,8 @@ define([
'./status/StatusAPI',
'./telemetry/TelemetryAPI',
'./time/TimeAPI',
'./types/TypeRegistry'
'./types/TypeRegistry',
'./user/UserAPI'
], function (
ActionsAPI,
CompositionAPI,
@@ -47,7 +48,8 @@ define([
StatusAPI,
TelemetryAPI,
TimeAPI,
TypeRegistry
TypeRegistry,
UserAPI
) {
return {
ActionsAPI: ActionsAPI.default,
@@ -62,6 +64,7 @@ define([
StatusAPI: StatusAPI.default,
TelemetryAPI: TelemetryAPI,
TimeAPI: TimeAPI.default,
TypeRegistry: TypeRegistry
TypeRegistry: TypeRegistry,
UserAPI: UserAPI.default
};
});