Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaurício Meneghini Fauth <mauricio@fauth.dev>2020-11-29 20:20:38 +0300
committerMaurício Meneghini Fauth <mauricio@fauth.dev>2020-11-29 20:20:38 +0300
commit6e4a9e82a0cfc02fb9fe6f8392cec154fdb07c2a (patch)
tree173cc1e0b425e61217c8e42588b61a48747c6c44 /libraries/routes.php
parentaeac7177da3eaf595e2d4d4ff520948c72d4791c (diff)
Extract check partition action to a new route
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
Diffstat (limited to 'libraries/routes.php')
-rw-r--r--libraries/routes.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/libraries/routes.php b/libraries/routes.php
index 324828f30d..71be9ac155 100644
--- a/libraries/routes.php
+++ b/libraries/routes.php
@@ -294,6 +294,7 @@ return static function (RouteCollector $routes): void {
});
$routes->addGroup('/partition', static function (RouteCollector $routes): void {
$routes->post('/analyze', [PartitionController::class, 'analyze']);
+ $routes->post('/check', [PartitionController::class, 'check']);
});
$routes->addRoute(['GET', 'POST'], '/operations', [TableOperationsController::class, 'index']);
$routes->addRoute(['GET', 'POST'], '/recent-favorite', [RecentFavoriteController::class, 'index']);