Skip to content
This repository has been archived by the owner on May 7, 2024. It is now read-only.

Commit

Permalink
Fix service plugins compat with Kong 1.x. Ref #288
Browse files Browse the repository at this point in the history
  • Loading branch information
Panagis Tselentis committed Dec 24, 2018
1 parent 70f16e9 commit 524aeaf
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,6 @@
})
}


function deletePlugin(plugin) {
DialogService.prompt(
"Delete Plugin", "Really want to delete the plugin?",
Expand Down Expand Up @@ -124,7 +123,7 @@

function fetchPlugins() {
$scope.loading = true;
PluginsService.load({service_id: $stateParams.service_id})
ServiceService.plugins($stateParams.service_id)
.then(function (response) {
$scope.plugins = response.data
console.log("Plugins", $scope.plugins);
Expand All @@ -133,7 +132,6 @@
console.error(error);
$scope.loading = false;
})

}


Expand Down

0 comments on commit 524aeaf

Please sign in to comment.