Merge pull request #3922 from kensible/3921-pre-pr-issues

Pre-pr fix and ui-router update
This commit is contained in:
kensible 2016-11-09 15:46:45 -05:00 committed by GitHub
commit d4d3c8117f
2 changed files with 7 additions and 2 deletions

View File

@ -17,7 +17,12 @@
name: 'configuration',
route: '/configuration/:currentTab',
params: {
currentTab: ''
currentTab: {
value: 'auth',
dynamic: true,
isOptional: true
}
},
ncyBreadcrumb: {
label: "Edit Configuration"

View File

@ -59,7 +59,7 @@ export default ['GetBasePath', 'ProcessErrors', '$q', '$http', 'Rest', '$rootSco
var deferred = $q.defer();
Rest.setUrl(url + '/all');
Rest.delete()
Rest.destroy()
.success(function(data) {
deferred.resolve(data);
})