[MyItems] Load via static model provider

Define a model for my items to be used when the model
is not found in a storage provider.

Fixes https://github.com/nasa/openmct/issues/1284
This commit is contained in:
Pete Richards 2016-12-01 13:18:22 -08:00
parent f85595665f
commit 88f954b437

View File

@ -31,12 +31,18 @@ define([
"description": "Defines a root named My Items",
"extensions": {
"roots": [
{
"id": "mine",
}
],
"models": [
{
"id": "mine",
"model": {
"name": "My Items",
"type": "folder",
"composition": []
"composition": [],
"location": "ROOT"
}
}
]