From 08740ac580afdcf1c42df1047a5fa61cca4b0713 Mon Sep 17 00:00:00 2001 From: moliware Date: Tue, 21 Apr 2020 10:09:30 +0200 Subject: [PATCH] Sets GET as default method in the REST console --- public/js/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/js/app.js b/public/js/app.js index 244cdde9..9c0d5242 100644 --- a/public/js/app.js +++ b/public/js/app.js @@ -1677,7 +1677,7 @@ angular.module('cerebro').controller('RestController', ['$scope', '$http', $scope.indices = undefined; $scope.host = undefined; - $scope.method = 'POST'; + $scope.method = 'GET'; $scope.path = ''; $scope.options = [];