summaryrefslogtreecommitdiffstats
path: root/api/config.go
diff options
context:
space:
mode:
Diffstat (limited to 'api/config.go')
-rw-r--r--api/config.go16
1 files changed, 16 insertions, 0 deletions
diff --git a/api/config.go b/api/config.go
index 91097b4a1..d8d52ca67 100644
--- a/api/config.go
+++ b/api/config.go
@@ -5,7 +5,9 @@ package api
import (
l4g "code.google.com/p/log4go"
+ "encoding/json"
"github.com/gorilla/mux"
+ "github.com/mattermost/platform/model"
"github.com/mattermost/platform/utils"
"net/http"
"strconv"
@@ -15,9 +17,23 @@ func InitConfig(r *mux.Router) {
l4g.Debug("Initializing config api routes")
sr := r.PathPrefix("/config").Subrouter()
+ sr.Handle("/get_all", ApiAppHandler(getConfig)).Methods("GET")
sr.Handle("/get/bypass_email", ApiAppHandler(getBypassEmail)).Methods("GET")
}
+func getConfig(c *Context, w http.ResponseWriter, r *http.Request) {
+ settings := make(map[string]string)
+
+ settings["ByPassEmail"] = strconv.FormatBool(utils.Cfg.EmailSettings.ByPassEmail)
+
+ if bytes, err := json.Marshal(settings); err != nil {
+ c.Err = model.NewAppError("getConfig", "Unable to marshall configuration data", err.Error())
+ return
+ } else {
+ w.Write(bytes)
+ }
+}
+
func getBypassEmail(c *Context, w http.ResponseWriter, r *http.Request) {
w.Write([]byte(strconv.FormatBool(utils.Cfg.EmailSettings.ByPassEmail)))
}