Coverage for gws-app / gws / base / action / core.py: 100%

8 statements  

« prev     ^ index     » next       coverage.py v7.13.4, created at 2026-03-03 10:12 +0100

1import gws 

2 

3 

4class Props(gws.Props): 

5 type: str 

6 

7 

8class Config(gws.ConfigWithAccess): 

9 pass 

10 

11 

12class Object(gws.Action): 

13 """Generic action object, the parent of all action objects.""" 

14 

15 def props(self, user): 

16 return gws.Data(type=self.extType)