Coverage for gws-app/gws/base/action/core.py: 88%
8 statements
« prev ^ index » next coverage.py v7.8.0, created at 2025-04-17 01:37 +0200
« prev ^ index » next coverage.py v7.8.0, created at 2025-04-17 01:37 +0200
1import gws
4class Props(gws.Props):
5 type: str
8class Config(gws.ConfigWithAccess):
9 pass
12class Object(gws.Action):
13 """Generic action object, the parent of all action objects."""
15 def props(self, user):
16 return gws.Data(type=self.extType)