31f36ce096
Adds namespace support to the UI: 1. Namespace CRUD/management 2. Show Namespace in relevant areas (intentions, upstreams) 3. Main navigation bar improvements 4. Logic/integration to interact with a new `internal/acl/authorize` endpoint
16 lines
423 B
JavaScript
16 lines
423 B
JavaScript
import RepositoryService from 'consul-ui/services/repository';
|
|
|
|
const modelName = 'nspace';
|
|
export default RepositoryService.extend({
|
|
getModelName: function() {
|
|
return modelName;
|
|
},
|
|
findAll: function(configuration = {}) {
|
|
const query = {};
|
|
if (typeof configuration.cursor !== 'undefined') {
|
|
query.index = configuration.cursor;
|
|
}
|
|
return this.store.query(this.getModelName(), query);
|
|
},
|
|
});
|