Support Editorconfig on web editor
This commit is contained in:
parent
47a3243ff1
commit
9ac46fb983
7 changed files with 53 additions and 3 deletions
|
@ -45,3 +45,23 @@ func GetArchive(ctx *context.APIContext) {
|
|||
|
||||
repo.Download(ctx.Context)
|
||||
}
|
||||
|
||||
func GetEditorconfig(ctx *context.APIContext) {
|
||||
ec, err := ctx.Repo.GetEditorconfig()
|
||||
if err != nil {
|
||||
if git.IsErrNotExist(err) {
|
||||
ctx.Error(404, "GetEditorconfig", err)
|
||||
} else {
|
||||
ctx.Error(500, "GetEditorconfig", err)
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
fileName := ctx.Params("filename")
|
||||
def := ec.GetDefinitionForFilename(fileName)
|
||||
if def == nil {
|
||||
ctx.Error(404, "GetDefinitionForFilename", err)
|
||||
return
|
||||
}
|
||||
ctx.JSON(200, def)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue