You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
consul/ui-v2/app/services/repository/nspace.js

16 lines
423 B

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);
},
});