mirror of
https://github.com/status-im/consul.git
synced 2025-01-27 14:05:45 +00:00
6589cbbd0d
* ui: Add the most basic workspace root in /ui * We already have a LICENSE file in the repository root * Change directory path in build scripts ui-v2 -> ui * Make yarn install flags configurable from elsewhere * Minimal workspace root makefile * Call the new docker specific target * Update yarn in the docker build image * Reconfigure the netlify target and move to the higher makefile * Move ui-v2 -> ui/packages/consul-ui * Change repo root to refleect new folder structure * Temporarily don't hoist consul-api-double * Fixup CI configuration * Fixup lint errors * Fixup Netlify target
38 lines
1.1 KiB
JavaScript
38 lines
1.1 KiB
JavaScript
import RepositoryService from 'consul-ui/services/repository';
|
|
import { get } from '@ember/object';
|
|
import statusFactory from 'consul-ui/utils/acls-status';
|
|
import isValidServerErrorFactory from 'consul-ui/utils/http/acl/is-valid-server-error';
|
|
import { PRIMARY_KEY, SLUG_KEY } from 'consul-ui/models/policy';
|
|
|
|
const isValidServerError = isValidServerErrorFactory();
|
|
const status = statusFactory(isValidServerError, Promise);
|
|
const MODEL_NAME = 'policy';
|
|
|
|
export default RepositoryService.extend({
|
|
getModelName: function() {
|
|
return MODEL_NAME;
|
|
},
|
|
getPrimaryKey: function() {
|
|
return PRIMARY_KEY;
|
|
},
|
|
getSlugKey: function() {
|
|
return SLUG_KEY;
|
|
},
|
|
status: function(obj) {
|
|
return status(obj);
|
|
},
|
|
persist: function(item) {
|
|
// only if a policy doesn't have a template, save it
|
|
// right now only ServiceIdentities have templates and
|
|
// are not saveable themselves (but can be saved to a Role/Token)
|
|
switch (get(item, 'template')) {
|
|
case '':
|
|
return item.save();
|
|
}
|
|
return Promise.resolve(item);
|
|
},
|
|
translate: function(item) {
|
|
return this.store.translate('policy', get(item, 'Rules'));
|
|
},
|
|
});
|