Coverage for gws-app/gws/plugin/account/core.py: 0%

18 statements  

« prev     ^ index     » next       coverage.py v7.8.0, created at 2025-04-17 01:37 +0200

1import gws 

2 

3 

4class Category: 

5 onboarding = 'onboarding' 

6 resetPassword = 'resetPassword' 

7 

8 

9class Status(gws.Enum): 

10 new = 0 

11 onboarding = 1 

12 active = 10 

13 

14 

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'