22 lines
962 B
Python
22 lines
962 B
Python
from api_events.tasks2events.default_abstract import AddEventFunctionality
|
|
|
|
|
|
class BuildManager(AddEventFunctionality):
|
|
service_code = "SRO-BU-MNG"
|
|
related_code = "BU-MNG"
|
|
events = [
|
|
{"function_code": "dce10509-0da5-46fb-af3c-a81d54d5481c"},
|
|
{"function_code": "0d2bc5c9-d4b1-4951-8305-69da4a687fdc"},
|
|
{"function_code": "0a68cb44-271a-4829-81f6-cd99a5f326b4"},
|
|
{"function_code": "5c10d6ae-2aee-4243-a7c3-94826d028d13"},
|
|
{"function_code": "d0bfa20c-841d-421c-98e6-d308f938d16a"},
|
|
{"function_code": "68b3b5ed-b74c-4a27-820f-3959214e94e9"},
|
|
{"function_code": "f6900cb5-ac5b-478e-8e7c-fa87e65cd2e5"},
|
|
{"function_code": "92413636-53a8-4a05-842c-1485a64e00d1"},
|
|
{"function_code": "bdcba521-0116-441c-ace1-84c5b68c86c7"},
|
|
{"function_code": "c0b65098-9c79-4212-b1d0-c7e7836cf141"},
|
|
]
|
|
|
|
def __new__(cls, *args, **kwargs):
|
|
return super().retrieve_events(cls.events)
|