summaryrefslogtreecommitdiffstats
path: root/routers/api/v1/api.go
diff options
context:
space:
mode:
authorAndrey Nering <andrey.nering@gmail.com>2016-08-30 20:18:40 -0300
committerAndrey Nering <andrey.nering@gmail.com>2016-08-30 20:30:47 -0300
commit9ac46fb983f31cfece76e2181a9fe73b71f02e2e (patch)
tree6499c69d94fcbeb71c144295c6df1ccc1883f8b9 /routers/api/v1/api.go
parent47a3243ff1b3da1b435d9390e578752f3a74ae8e (diff)
downloadgitea-9ac46fb983f31cfece76e2181a9fe73b71f02e2e.tar.gz
gitea-9ac46fb983f31cfece76e2181a9fe73b71f02e2e.zip
Support Editorconfig on web editor
Diffstat (limited to 'routers/api/v1/api.go')
-rw-r--r--routers/api/v1/api.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/routers/api/v1/api.go b/routers/api/v1/api.go
index 16322fbffd..0591cddb86 100644
--- a/routers/api/v1/api.go
+++ b/routers/api/v1/api.go
@@ -290,6 +290,7 @@ func RegisterRoutes(m *macaron.Macaron) {
Patch(reqRepoWriter(), bind(api.EditMilestoneOption{}), repo.EditMilestone).
Delete(reqRepoWriter(), repo.DeleteMilestone)
})
+ m.Get("/editorconfig/:filename", context.RepoRef(), repo.GetEditorconfig)
}, repoAssignment())
}, reqToken())