mirror of
https://github.com/status-im/consul.git
synced 2025-01-22 11:40:06 +00:00
parent
c8ac05b39e
commit
cc8c3bbd98
@ -401,6 +401,16 @@ App.AclsController = Ember.ArrayController.extend({
|
||||
}).then(function(response) {
|
||||
// transition to the acl
|
||||
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);
|
||||
}).fail(function(response) {
|
||||
// Render the error message on the form if the request failed
|
||||
|
Loading…
x
Reference in New Issue
Block a user