openmct/platform/features/search/bundle.json
shale 1d0d2302d8 [Search] Moved functionality into QueryService
Moved the actual searching implementation
into the query service. The search view
controller now just calls the query service.
2015-07-14 11:31:53 -07:00

36 lines
1.0 KiB
JSON

{
"name": "Search View",
"description": "Allows the user to search through the file tree.",
"extensions": {
"views": [
{
"key": "search",
"name": "Search",
"glyph": "5",
"description": "Search functionality.",
"templateUrl": "templates/search.html"
}
],
"controllers": [
{
"key": "SearchController",
"implementation": "SearchController.js",
"depends": [ "$scope", "queryService" ]
}
],
"representations": [
{
"key": "search-item",
"templateUrl": "templates/search-item.html",
"uses": [ "grid-item" ]
}
],
"services": [
{
"key": "queryService",
"implementation": "QueryService.js",
"depends": [ "$http", "objectService", "ELASTIC_ROOT" ]
}
]
}
}