summaryrefslogtreecommitdiffstats
path: root/api/config.go
blob: 91097b4a11aecf14c83ba0ac199e2098b133c0a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright (c) 2015 Spinpunch, Inc. All Rights Reserved.
// See License.txt for license information.

package api

import (
	l4g "code.google.com/p/log4go"
	"github.com/gorilla/mux"
	"github.com/mattermost/platform/utils"
	"net/http"
	"strconv"
)

func InitConfig(r *mux.Router) {
	l4g.Debug("Initializing config api routes")

	sr := r.PathPrefix("/config").Subrouter()
	sr.Handle("/get/bypass_email", ApiAppHandler(getBypassEmail)).Methods("GET")
}

func getBypassEmail(c *Context, w http.ResponseWriter, r *http.Request) {
	w.Write([]byte(strconv.FormatBool(utils.Cfg.EmailSettings.ByPassEmail)))
}