summaryrefslogtreecommitdiffstats
path: root/api/context.go
diff options
context:
space:
mode:
author=Corey Hulen <corey@hulen.com>2016-01-19 22:00:01 -0600
committer=Corey Hulen <corey@hulen.com>2016-01-19 22:00:01 -0600
commit8e404c1dcf820cf767e9d6899e8c1efc7bb5ca96 (patch)
treeed96e0aff323aaf7a45d38896ea6a929dc320500 /api/context.go
parent36c5c46e24f745ee80b49f47363217fcb740ce53 (diff)
downloadchat-8e404c1dcf820cf767e9d6899e8c1efc7bb5ca96.tar.gz
chat-8e404c1dcf820cf767e9d6899e8c1efc7bb5ca96.tar.bz2
chat-8e404c1dcf820cf767e9d6899e8c1efc7bb5ca96.zip
PLT-7 Adding translation function to context
Diffstat (limited to 'api/context.go')
-rw-r--r--api/context.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/api/context.go b/api/context.go
index e8ec6576d..b6ffb1a29 100644
--- a/api/context.go
+++ b/api/context.go
@@ -15,6 +15,7 @@ import (
"github.com/mattermost/platform/model"
"github.com/mattermost/platform/store"
"github.com/mattermost/platform/utils"
+ goi18n "github.com/nicksnyder/go-i18n/i18n"
)
var sessionCache *utils.Cache = utils.NewLru(model.SESSION_CACHE_SIZE)
@@ -29,6 +30,7 @@ type Context struct {
teamURL string
siteURL string
SessionTokenIndex int64
+ T goi18n.TranslateFunc
}
type Page struct {
@@ -81,10 +83,10 @@ type handler struct {
}
func (h handler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
-
l4g.Debug("%v", r.URL.Path)
c := &Context{}
+ c.T = utils.GetTranslations(w, r)
c.RequestId = model.NewId()
c.IpAddress = GetIpAddress(r)