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>2022-08-02 21:31:41 +0300
committerMaurício Meneghini Fauth <mauricio@fauth.dev>2022-08-02 21:31:41 +0300
commita5024edcc5c259fd6d48920e19e0fa4cd7097998 (patch)
tree63f41f6bcc40881a60bf90412c736251ef140e0b /libraries/routes.php
parent97c5c01a8764eafa2b4016bf3fee63090b084e97 (diff)
Extract normalization's move repeating group action
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 fe0cfb7fae..be116075c2 100644
--- a/libraries/routes.php
+++ b/libraries/routes.php
@@ -142,6 +142,7 @@ return static function (RouteCollector $routes): void {
$routes->post('/3nf/create-new-tables', Normalization\ThirdNormalForm\CreateNewTablesController::class);
$routes->post('/3nf/new-tables', Normalization\ThirdNormalForm\NewTablesController::class);
$routes->post('/3nf/step1', Normalization\ThirdNormalForm\FirstStepController::class);
+ $routes->post('/move-repeating-group', Normalization\MoveRepeatingGroup::class);
});
$routes->get('/phpinfo', PhpInfoController::class);
$routes->addGroup('/preferences', static function (RouteCollector $routes): void {