28 lines
832 B
Python
28 lines
832 B
Python
from Events.Engine.abstract_class import CategoryCluster
|
|
from .account_records import (
|
|
AccountRecordsListEventMethods,
|
|
AccountRecordsCreateEventMethods,
|
|
AccountRecordsUpdateEventMethods,
|
|
)
|
|
from .bases import cluster_name, prefix, page_2_keys
|
|
from .info import page_infos
|
|
|
|
|
|
AccountCluster = CategoryCluster(
|
|
name=cluster_name,
|
|
tags=["Account Records"],
|
|
prefix=prefix,
|
|
description="Account Cluster Actions",
|
|
pageinfo=page_infos,
|
|
endpoints={
|
|
"AccountRecordsCreateEventMethods": AccountRecordsCreateEventMethods,
|
|
"AccountRecordsUpdateEventMethods": AccountRecordsUpdateEventMethods,
|
|
"AccountRecordsListEventMethods": AccountRecordsListEventMethods,
|
|
},
|
|
mapping=page_2_keys,
|
|
include_in_schema=True,
|
|
template_ui="LCU",
|
|
sub_category=[],
|
|
is_client=True,
|
|
)
|