mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
37 lines
804 B
Go
37 lines
804 B
Go
|
|
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
||
|
|
// See LICENSE.txt for license information.
|
||
|
|
|
||
|
|
package api4
|
||
|
|
|
||
|
|
import (
|
||
|
|
"encoding/json"
|
||
|
|
"net/http"
|
||
|
|
|
||
|
|
"github.com/mattermost/mattermost-server/v5/model"
|
||
|
|
)
|
||
|
|
|
||
|
|
func (api *API) InitImport() {
|
||
|
|
api.BaseRoutes.Imports.Handle("", api.ApiSessionRequired(listImports)).Methods("GET")
|
||
|
|
}
|
||
|
|
|
||
|
|
func listImports(c *Context, w http.ResponseWriter, r *http.Request) {
|
||
|
|
if !c.IsSystemAdmin() {
|
||
|
|
c.SetPermissionError(model.PERMISSION_MANAGE_SYSTEM)
|
||
|
|
return
|
||
|
|
}
|
||
|
|
|
||
|
|
imports, appErr := c.App.ListImports()
|
||
|
|
if appErr != nil {
|
||
|
|
c.Err = appErr
|
||
|
|
return
|
||
|
|
}
|
||
|
|
|
||
|
|
data, err := json.Marshal(imports)
|
||
|
|
if err != nil {
|
||
|
|
c.Err = model.NewAppError("listImports", "app.import.marshal.app_error", nil, err.Error(), http.StatusInternalServerError)
|
||
|
|
return
|
||
|
|
}
|
||
|
|
|
||
|
|
w.Write(data)
|
||
|
|
}
|