- removed extra test datacite accounts from .env
All checks were successful
CI Pipeline / japa-tests (push) Successful in 57s

- updated DoiClient.ts
- removed test error via /welcome page
- npm updates
This commit is contained in:
Kaimbacher 2024-01-31 13:19:46 +01:00
parent c9ba7d6adc
commit 8cef7390d7
11 changed files with 186 additions and 229 deletions

View file

@ -41,9 +41,9 @@ Route.group(() => {
// Route.inertia('/about', 'App');
//old solution:
// Route.get('/', async ({ view }) => {
// return view.render('welcome');
// }).as('dashboard2');
Route.get('/welcome', async ({ view }) => {
return view.render('welcome');
}).as('welcome');
Route.get('/', async ({ response }) => {
return response.redirect().toRoute('apps.dashboard');