From d2ddf40f56191c1770c3ca93d747a7f1b749f26c Mon Sep 17 00:00:00 2001 From: Harrison Healey Date: Thu, 5 May 2016 16:35:03 -0400 Subject: PLT-2600/PLT-2770 Added Get Public Link modal and added new API for public file links (#2892) * Switched public file links to use a GetLinkModal * Separated getFile and the new getPublicFile api calls --- api/api.go | 3 +++ 1 file changed, 3 insertions(+) (limited to 'api/api.go') diff --git a/api/api.go b/api/api.go index fc81dda3a..6626ef326 100644 --- a/api/api.go +++ b/api/api.go @@ -43,6 +43,8 @@ type Routes struct { Preferences *mux.Router // 'api/v3/preferences' License *mux.Router // 'api/v3/license' + + Public *mux.Router // 'api/v3/public' } var BaseRoutes *Routes @@ -67,6 +69,7 @@ func InitApi() { BaseRoutes.Admin = BaseRoutes.ApiRoot.PathPrefix("/admin").Subrouter() BaseRoutes.Preferences = BaseRoutes.ApiRoot.PathPrefix("/preferences").Subrouter() BaseRoutes.License = BaseRoutes.ApiRoot.PathPrefix("/license").Subrouter() + BaseRoutes.Public = BaseRoutes.ApiRoot.PathPrefix("/public").Subrouter() InitUser() InitTeam() -- cgit v1.2.3-1-g7c22