mirror of
https://github.com/nasa/openmct.git
synced 2025-06-22 17:08:57 +00:00
[Indicators] Begin adding Couch indicator
Begin adding indicator to display connection status for CouchDB. WTD-608.
This commit is contained in:
25
platform/persistence/src/CouchIndicator.js
Normal file
25
platform/persistence/src/CouchIndicator.js
Normal file
@ -0,0 +1,25 @@
|
||||
/*global define*/
|
||||
|
||||
define(
|
||||
[],
|
||||
function () {
|
||||
"use strict";
|
||||
|
||||
function CouchIndicator($http, $interval, PATH, INTERVAL) {
|
||||
function updateIndicator() {
|
||||
|
||||
}
|
||||
|
||||
$interval(updateIndicator, INTERVAL);
|
||||
|
||||
return {
|
||||
getGlyph: function () {
|
||||
return "D";
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
return CouchIndicator;
|
||||
}
|
||||
);
|
Reference in New Issue
Block a user