diff options
author | Antoine GIRARD <sapk@users.noreply.github.com> | 2017-10-21 16:05:50 +0200 |
---|---|---|
committer | Lunny Xiao <xiaolunwen@gmail.com> | 2017-10-21 22:05:50 +0800 |
commit | 619b9b5547dab4f30acedbf816550df02bb3c1c5 (patch) | |
tree | 5a1cfbe2ab2d0723991dac8a8f69b8fe6a98f006 /Makefile | |
parent | bc8d72666c371cc674128011cede929d4ce1ae80 (diff) | |
download | gitea-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 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -304,10 +304,10 @@ generate-stylesheets: .PHONY: swagger-ui swagger-ui: rm -Rf public/vendor/assets/swagger-ui - git clone --depth=10 -b v3.0.7 --single-branch https://github.com/swagger-api/swagger-ui.git $(TMPDIR)/swagger-ui + git clone --depth=10 -b v3.3.2 --single-branch https://github.com/swagger-api/swagger-ui.git $(TMPDIR)/swagger-ui mv $(TMPDIR)/swagger-ui/dist public/vendor/assets/swagger-ui rm -Rf $(TMPDIR)/swagger-ui - $(SED_INPLACE) "s;http://petstore.swagger.io/v2/swagger.json;../../swagger.v1.json;g" public/assets/swagger-ui/index.html + $(SED_INPLACE) "s;http://petstore.swagger.io/v2/swagger.json;../../../swagger.v1.json;g" public/vendor/assets/swagger-ui/index.html .PHONY: update-translations update-translations: |