Changes the default ACL token type to "client" in web UI. (#3246)

* Changes the default ACL token type to "client".

* Updates built-in web assets.
This commit is contained in:
James Phillips 2017-07-08 17:28:04 -07:00 committed by GitHub
parent b01b3f6990
commit aa11956d63
2 changed files with 34 additions and 34 deletions

File diff suppressed because one or more lines are too long

View File

@ -314,7 +314,7 @@ App.AclsController = Ember.ArrayController.extend({
filterText: "Filter by name or ID",
searchBar: true,
newAclButton: true,
types: ["management", "client"],
types: ["client", "management"],
dc: Ember.computed.alias("controllers.dc"),
items: Ember.computed.alias("acls"),
@ -384,7 +384,7 @@ App.AclsShowController = Ember.ObjectController.extend({
needs: ["dc", "acls"],
dc: Ember.computed.alias("controllers.dc"),
isLoading: false,
types: ["management", "client"],
types: ["client", "management"],
actions: {
set: function() {