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