mirror of https://github.com/hashicorp/consul
46 lines
986 B
JavaScript
46 lines
986 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
(routes => routes({
|
|
dc: {
|
|
nspaces: {
|
|
_options: {
|
|
path: '/namespaces',
|
|
abilities: ['read nspaces'],
|
|
},
|
|
index: {
|
|
_options: {
|
|
path: '/',
|
|
queryParams: {
|
|
sortBy: 'sort',
|
|
searchproperty: {
|
|
as: 'searchproperty',
|
|
empty: [['Name', 'Description', 'Role', 'Policy']],
|
|
},
|
|
search: {
|
|
as: 'filter',
|
|
replace: true,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
edit: {
|
|
_options: { path: '/:name' },
|
|
},
|
|
create: {
|
|
_options: {
|
|
template: '../edit',
|
|
path: '/create',
|
|
abilities: ['create nspaces'],
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}))(
|
|
(json, data = (typeof document !== 'undefined' ? document.currentScript.dataset : module.exports)) => {
|
|
data[`routes`] = JSON.stringify(json);
|
|
}
|
|
);
|