summaryrefslogtreecommitdiffstats
path: root/templates/swagger.tmpl
diff options
context:
space:
mode:
authorAntoine GIRARD <sapk@users.noreply.github.com>2017-10-21 16:05:50 +0200
committerLunny Xiao <xiaolunwen@gmail.com>2017-10-21 22:05:50 +0800
commit619b9b5547dab4f30acedbf816550df02bb3c1c5 (patch)
tree5a1cfbe2ab2d0723991dac8a8f69b8fe6a98f006 /templates/swagger.tmpl
parentbc8d72666c371cc674128011cede929d4ce1ae80 (diff)
downloadgitea-619b9b5547dab4f30acedbf816550df02bb3c1c5.tar.gz
gitea-619b9b5547dab4f30acedbf816550df02bb3c1c5.zip
Move swagger-ui under /api/v1 (#2746)
* Move swagger interface under /api/v1 * Update swagger-ui * Add /api/swagger and prepare for multiple api version * Update test links * Fix footer link
Diffstat (limited to 'templates/swagger.tmpl')
-rw-r--r--templates/swagger.tmpl12
1 files changed, 7 insertions, 5 deletions
diff --git a/templates/swagger.tmpl b/templates/swagger.tmpl
index 8bcc1c5340..9d154b2898 100644
--- a/templates/swagger.tmpl
+++ b/templates/swagger.tmpl
@@ -11,15 +11,15 @@
<style>
html
{
- box-sizing: border-box;
- overflow: -moz-scrollbars-vertical;
- overflow-y: scroll;
+ box-sizing: border-box;
+ overflow: -moz-scrollbars-vertical;
+ overflow-y: scroll;
}
*,
*:before,
*:after
{
- box-sizing: inherit;
+ box-sizing: inherit;
}
body {
@@ -70,11 +70,13 @@
<script src="{{AppSubUrl}}/vendor/assets/swagger-ui/swagger-ui-bundle.js"> </script>
<script src="{{AppSubUrl}}/vendor/assets/swagger-ui/swagger-ui-standalone-preset.js"> </script>
<script>
+
window.onload = function() {
// Build a system
const ui = SwaggerUIBundle({
- url: "{{AppUrl}}swagger.v1.json",
+ url: "{{AppUrl}}swagger.{{.APIJSONVersion}}.json",
dom_id: '#swagger-ui',
+ deepLinking: true,
presets: [
SwaggerUIBundle.presets.apis,
SwaggerUIStandalonePreset