From f8a3c9a14edca6df0647d89cf225f2470cbe025c Mon Sep 17 00:00:00 2001 From: =Corey Hulen Date: Mon, 23 Nov 2015 15:51:43 -0800 Subject: upgrading libs --- model/user.go | 2 +- model/utils.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'model') diff --git a/model/user.go b/model/user.go index 77dc04a03..4ba35c6c4 100644 --- a/model/user.go +++ b/model/user.go @@ -4,9 +4,9 @@ package model import ( - "code.google.com/p/go.crypto/bcrypt" "encoding/json" "fmt" + "golang.org/x/crypto/bcrypt" "io" "regexp" "strings" diff --git a/model/utils.go b/model/utils.go index ff26bfc66..b49b4bb24 100644 --- a/model/utils.go +++ b/model/utils.go @@ -5,10 +5,10 @@ package model import ( "bytes" - "code.google.com/p/go-uuid/uuid" "encoding/base32" "encoding/json" "fmt" + "github.com/pborman/uuid" "io" "net/mail" "net/url" -- cgit v1.2.3-1-g7c22 From 192b606bc6da20b1148b14116de0a234814615c9 Mon Sep 17 00:00:00 2001 From: Florian Orben Date: Fri, 27 Nov 2015 02:20:06 +0100 Subject: add unit tests --- model/preference.go | 1 + 1 file changed, 1 insertion(+) (limited to 'model') diff --git a/model/preference.go b/model/preference.go index 892ae82aa..4f2ba0099 100644 --- a/model/preference.go +++ b/model/preference.go @@ -12,6 +12,7 @@ import ( const ( PREFERENCE_CATEGORY_DIRECT_CHANNEL_SHOW = "direct_channel_show" PREFERENCE_CATEGORY_TUTORIAL_STEPS = "tutorial_step" + PREFERENCE_CATEGORY_ADVANCED_SETTINGS = "advanced_settings" ) type Preference struct { -- cgit v1.2.3-1-g7c22