mirror of https://github.com/status-im/consul.git
parent
c8ac05b39e
commit
cc8c3bbd98
|
@ -401,6 +401,16 @@ App.AclsController = Ember.ArrayController.extend({
|
||||||
}).then(function(response) {
|
}).then(function(response) {
|
||||||
// transition to the acl
|
// transition to the acl
|
||||||
controller.transitionToRoute('acls.show', response.ID);
|
controller.transitionToRoute('acls.show', response.ID);
|
||||||
|
|
||||||
|
// Get the ACL again, including the newly created one
|
||||||
|
Ember.$.getJSON(formatUrl('/v1/acl/list', dc, token)).then(function(data) {
|
||||||
|
var objs = [];
|
||||||
|
data.map(function(obj){
|
||||||
|
objs.push(App.Acl.create(obj));
|
||||||
|
});
|
||||||
|
controller.set('items', objs);
|
||||||
|
});
|
||||||
|
|
||||||
controller.set('isLoading', false);
|
controller.set('isLoading', false);
|
||||||
}).fail(function(response) {
|
}).fail(function(response) {
|
||||||
// Render the error message on the form if the request failed
|
// Render the error message on the form if the request failed
|
||||||
|
|
Loading…
Reference in New Issue