Skip to content

Commit

Permalink
Rename db url
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierstoval committed Nov 27, 2024
1 parent f1556b5 commit bda07d6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion js/modules/GlpiInstall.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export async function start_database_install(dom_element, progress_key)
}, 1500);

try {
await fetch("/install/database_setup/start_db_inserts", {method: 'POST'});
await fetch("/install/init_database", {method: 'POST'});
} catch (err) {
} finally {
}
Expand Down
2 changes: 1 addition & 1 deletion src/Glpi/Controller/Install/InstallController.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public function __construct(
) {
}

#[Route("/install/database_setup/start_db_inserts", methods: 'POST')]
#[Route("/install/init_database", methods: 'POST')]
#[SecurityStrategy(Firewall::STRATEGY_NO_CHECK)]
public function start_inserts(): Response
{
Expand Down

0 comments on commit bda07d6

Please sign in to comment.