Add flags (EmailVerified, Country2FA)

This commit is contained in:
Morgan Bazalgette 2016-12-11 16:40:07 +01:00
parent 256f082340
commit 099983f7f3
1 changed files with 8 additions and 0 deletions

8
common/flags.go Normal file
View File

@ -0,0 +1,8 @@
package common
// These are the flags an user can have. Mostly settings or things like whether
// the user has verified their email address.
const (
FlagEmailVerified = 1 << iota
FlagCountry2FA
)