summaryrefslogtreecommitdiffstats
path: root/model
diff options
context:
space:
mode:
authorJoram Wilander <jwawilander@gmail.com>2015-10-20 11:50:09 -0400
committerJoram Wilander <jwawilander@gmail.com>2015-10-20 11:50:09 -0400
commitf183f6673f7712234671260c08429a4f7149ffc3 (patch)
tree09b4811bd137ca946ca4f17a9ebd3146c812c0db /model
parent239abd88e0113ae1d74eba423d72f32157f3854c (diff)
parent1d4e96605e04f9bf70b4d467c1ff24584c0a25a0 (diff)
downloadchat-f183f6673f7712234671260c08429a4f7149ffc3.tar.gz
chat-f183f6673f7712234671260c08429a4f7149ffc3.tar.bz2
chat-f183f6673f7712234671260c08429a4f7149ffc3.zip
Merge pull request #1116 from sharms/master
Fixed missing colon
Diffstat (limited to 'model')
-rw-r--r--model/access.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/model/access.go b/model/access.go
index 89a1271c1..6c9254004 100644
--- a/model/access.go
+++ b/model/access.go
@@ -16,7 +16,7 @@ const (
type AccessData struct {
AuthCode string `json:"auth_code"`
- Token string `json"token"`
+ Token string `json:"token"`
RefreshToken string `json:"refresh_token"`
RedirectUri string `json:"redirect_uri"`
}