From 2daffe2a159b99bfedaef892b6797259a643bbfa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torkel=20=C3=96degaard?= Date: Sun, 18 Jan 2015 08:56:19 +0100 Subject: [PATCH] Api import route updated --- pkg/api/api.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/api/api.go b/pkg/api/api.go index aab4e54e329..3bcab2a904f 100644 --- a/pkg/api/api.go +++ b/pkg/api/api.go @@ -28,6 +28,7 @@ func Register(r *macaron.Macaron) { r.Get("/account/datasources/", reqSignedIn, Index) r.Get("/account/collaborators/", reqSignedIn, Index) r.Get("/account/apikeys/", reqSignedIn, Index) + r.Get("/account/import/", reqSignedIn, Index) r.Get("/admin", reqSignedIn, Index) r.Get("/dashboard/*", reqSignedIn, Index)