Files
grocy/views/openapiui.blade.php

69 lines
1.7 KiB
PHP
Raw Normal View History

<!DOCTYPE html>
<html lang="en">
2020-08-31 20:32:50 +02:00
<head>
<meta charset="utf-8">
2020-08-31 20:32:50 +02:00
<meta name="viewport"
2023-05-19 18:08:26 +02:00
content="width=device-width, initial-scale=1">
2020-08-31 20:32:50 +02:00
<meta name="robots"
content="noindex,nofollow">
2020-08-31 20:32:50 +02:00
<link rel="icon"
2023-05-19 18:08:26 +02:00
type="image/png"
sizes="32x32"
href="{{ $U('/img/icon-32.png?v=', true) }}{{ $version }}">
2023-05-19 18:08:26 +02:00
<title>{{ $__t('REST API browser') }} | Grocy</title>
2020-08-31 20:32:50 +02:00
<link href="{{ $U('/node_modules/swagger-ui-dist/swagger-ui.css?v=', true) }}{{ $version }}"
rel="stylesheet">
@if(file_exists(GROCY_DATAPATH . '/custom_css.html'))
2020-08-31 20:32:50 +02:00
@php include GROCY_DATAPATH . '/custom_css.html' @endphp
@endif
<script>
var Grocy = { };
Grocy.OpenApi = { };
Grocy.OpenApi.SpecUrl = '{{ $U('/api/openapi/specification') }}';
</script>
2019-09-19 19:53:46 +02:00
<style>
.servers-title,
.servers,
.url {
display: none !important;
}
.swagger-ui .info {
margin-bottom: 0 !important;
}
.scheme-container {
padding-top: 0 !important;
}
.swagger-ui .scheme-container {
box-shadow: none !important;
-webkit-box-shadow: none !important;
border-bottom: 1px solid rgba(59, 65, 81, 0.3) !important;
}
</style>
</head>
<body>
<div id="swagger-ui"></div>
<script src="{{ $U('/node_modules/swagger-ui-dist/swagger-ui.js?v=', true) }}{{ $version }}"></script>
<script src="{{ $U('/node_modules/swagger-ui-dist/swagger-ui-bundle.js?v=', true) }}{{ $version }}"></script>
<script src="{{ $U('/node_modules/swagger-ui-dist/swagger-ui-standalone-preset.js?v=', true) }}{{ $version }}"></script>
2018-06-15 20:50:40 +02:00
<script src="{{ $U('/viewjs', true) }}/openapiui.js?v={{ $version }}"></script>
@if(file_exists(GROCY_DATAPATH . '/custom_js.html'))
2020-08-31 20:32:50 +02:00
@php include GROCY_DATAPATH . '/custom_js.html' @endphp
@endif
</body>
2020-08-31 20:32:50 +02:00
</html>