Coverage for gws-app / gws / plugin / account / core.py: 0%
18 statements
« prev ^ index » next coverage.py v7.13.4, created at 2026-03-03 10:12 +0100
« prev ^ index » next coverage.py v7.13.4, created at 2026-03-03 10:12 +0100
1import gws
4class Category:
5 onboarding = 'onboarding'
6 resetPassword = 'resetPassword'
9class Status(gws.Enum):
10 new = 0
11 onboarding = 1
12 active = 10
15class Columns:
16 username = 'username'
17 email = 'email'
18 status = 'status'
19 password = 'password'
20 mfaUid = 'mfauid'
21 mfaSecret = 'mfasecret'
22 tc = 'tc'
23 tcTime = 'tctime'
24 tcCategory = 'tccategory'