diff --git a/common/flags.go b/common/flags.go new file mode 100644 index 0000000..e5d10ea --- /dev/null +++ b/common/flags.go @@ -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 +)