From da66599fa39ddbff96b0844fabac161e130a2bc4 Mon Sep 17 00:00:00 2001 From: hmhealey Date: Thu, 1 Oct 2015 10:56:07 -0400 Subject: Added Preferences table to store user preferences --- model/preference.go | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'model') diff --git a/model/preference.go b/model/preference.go index 900c1d7a0..f363434e3 100644 --- a/model/preference.go +++ b/model/preference.go @@ -10,7 +10,9 @@ import ( const ( PREFERENCE_CATEGORY_DIRECT_CHANNELS = "direct_channels" + PREFERENCE_CATEGORY_TEST = "test" // do not use, just for testing uniqueness while there's only one real category PREFERENCE_NAME_SHOWHIDE = "show_hide" + PREFERENCE_NAME_TEST = "test" // do not use, just for testing uniqueness while there's only one real name ) type Preference struct { @@ -66,9 +68,9 @@ func (o *Preference) IsValid() *AppError { } func IsPreferenceCategoryValid(category string) bool { - return category == PREFERENCE_CATEGORY_DIRECT_CHANNELS + return category == PREFERENCE_CATEGORY_DIRECT_CHANNELS || category == PREFERENCE_CATEGORY_TEST } func IsPreferenceNameValid(name string) bool { - return name == PREFERENCE_NAME_SHOWHIDE + return name == PREFERENCE_NAME_SHOWHIDE || name == PREFERENCE_NAME_TEST } -- cgit v1.2.3-1-g7c22