13 lines
331 B
Python
13 lines
331 B
Python
from api_events.tasks2events.default_abstract import AddEventFunctionality
|
|
|
|
|
|
class ProjectResponsible(AddEventFunctionality):
|
|
service_code = "SRO-PRJ-RES"
|
|
related_code = "PRJ-RES"
|
|
events = [
|
|
{"function_code": ""},
|
|
]
|
|
|
|
def __new__(cls, *args, **kwargs):
|
|
return super().retrieve_events(cls.events)
|