6ec5c61ca6
* v3.12.0...v3.16.0 * Upgrades * Remove old wormhole fix * Fixup ember power select (camelcasing) * Fixup immedaitely closing dropdown When clicking on the syntax selector, it seemed like an extra click event was firing from the label, which then immediately closed the dropdown. By adding a for="" attribute this event isn't passed to the dropdown menu and therefore doesn't immediately close * Fix up integration tests with new style (plus standardize titles) * Temporarily disable some template linting rules * Add required methods (even though they aren't used anywhere) * Ensure event sources get closed on destruction
29 lines
668 B
JavaScript
29 lines
668 B
JavaScript
import RepositoryService from 'consul-ui/services/repository';
|
|
import { Promise } from 'rsvp';
|
|
import { PRIMARY_KEY, SLUG_KEY } from 'consul-ui/models/nspace';
|
|
|
|
const modelName = 'nspace';
|
|
const DEFAULT_NSPACE = 'default';
|
|
export default RepositoryService.extend({
|
|
getPrimaryKey: function() {
|
|
return PRIMARY_KEY;
|
|
},
|
|
getSlugKey: function() {
|
|
return SLUG_KEY;
|
|
},
|
|
getModelName: function() {
|
|
return modelName;
|
|
},
|
|
findAll: function(configuration = {}) {
|
|
return Promise.resolve([]);
|
|
},
|
|
getActive: function() {
|
|
return {
|
|
Name: DEFAULT_NSPACE,
|
|
};
|
|
},
|
|
authorize: function(dc, nspace) {
|
|
return Promise.resolve([]);
|
|
},
|
|
});
|