summaryrefslogtreecommitdiffstats
path: root/integrations
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 /integrations
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 'integrations')
-rw-r--r--integrations/links_test.go6
1 files changed, 4 insertions, 2 deletions
diff --git a/integrations/links_test.go b/integrations/links_test.go
index d9d647f4b9..27e4054694 100644
--- a/integrations/links_test.go
+++ b/integrations/links_test.go
@@ -26,7 +26,8 @@ func TestLinksNoLogin(t *testing.T) {
"/user/sign_up",
"/user/login",
"/user/forgot_password",
- "/swagger",
+ "/api/swagger",
+ "/api/v1/swagger",
// TODO: follow this page and test every link
"/vendor/librejs.html",
}
@@ -47,7 +48,8 @@ func testLinksAsUser(userName string, t *testing.T) {
"/explore/organizations?q=test&tab=",
"/",
"/user/forgot_password",
- "/swagger",
+ "/api/swagger",
+ "/api/v1/swagger",
"/issues",
"/issues?type=your_repositories&repo=0&sort=&state=open",
"/issues?type=assigned&repo=0&sort=&state=open",