Some checks failed
CI Pipeline / japa-tests (pull_request) Has been cancelled
- Added a NotificationBar component to display flash messages on the Mimetype creation page. - Modified FormCheckRadioGroup to handle both numeric and string keys for input values. - Removed unused code and API calls from Dashboard.vue and moved API calls to the component level where they are used. - Added authentication middleware to the 'clients' and 'authors' API routes in `start/routes/api.ts`. - Updated the file download route in `start/routes/api.ts` to include "file" in the path. - Corrected the validation message key for file extension minLength in MimetypeController.ts. - Updated favicon path in `resources/views/app.edge`. - Added argon2 dependency in `package.json`.
44 lines
No EOL
1.8 KiB
Text
44 lines
No EOL
1.8 KiB
Text
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="msapplication-TileColor" content="#da532c">
|
|
<meta name="theme-color" content="#ffffff">
|
|
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
|
|
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
|
|
<link rel="manifest" href="/site.webmanifest">
|
|
|
|
<!-- <link rel="icon" href="/apps/theming/favicon/settings?v=ad28c447"> -->
|
|
<input type="hidden" id="initial-state-firstrunwizard-desktop"
|
|
value="Imh0dHBzOi8vZ2l0ZWEuZ2VvbG9naWUuYWMuYXQvZ2VvbGJhL3RldGh5cy5iYWNrZW5kIg==">
|
|
|
|
|
|
<input type="hidden" id="initial-state-settings-profileEnabledGlobally" value="dHJ1ZQ==">
|
|
<input type="hidden" id="initial-state-settings-profileEnabledByDefault" value="dHJ1ZQ==">
|
|
|
|
<input type="hidden" id="initial-state-settings-backgroundJobsDocUrl"
|
|
value="Imh0dHBzOlwvXC9kb2NzLm5leHRjbG91ZC5jb21cL3NlcnZlclwvMjlcL2dvLnBocD90bz1hZG1pbi1iYWNrZ3JvdW5kLWpvYnMi">
|
|
<input type="hidden" id="initial-state-settings-backgroundJobsMode" value="ImNyb24i">
|
|
<input type="hidden" id="initial-state-settings-lastCron" value="MTcyMzgwNzIwMQ==">
|
|
<input type="hidden" id="initial-state-settings-cronErrors" value="IiI=">
|
|
<input type="hidden" id="initial-state-settings-cliBasedCronPossible" value="dHJ1ZQ==">
|
|
<input type="hidden" id="initial-state-settings-cliBasedCronUser" value="Ind3dy1kYXRhIg==">
|
|
@vite(['resources/js/app.ts'])
|
|
|
|
@routes('test')
|
|
@inertiaHead
|
|
</head>
|
|
|
|
<body>
|
|
@inertia({ as: 'div', class: 'h-full' })
|
|
|
|
{{-- @entryPointStyles('app')
|
|
@entryPointScripts('app') --}}
|
|
</body>
|
|
|
|
</html> |