123456789101112131415161718192021222324252627282930313233343536373839 |
- # coding=utf-8
-
-
- class WorkspaceMenuEntry(object):
- """
- Application class with data needed for frontend
- """
- def __init__(
- self,
- label: str,
- slug: str,
- icon: str,
- hexcolor: str,
- route: str,
- ) -> None:
- self.slug = slug
- self.label = label
- self.route = route
- self.hexcolor = hexcolor
- self.icon = icon
-
-
- dashboard_menu_entry = WorkspaceMenuEntry(
- slug='dashboard',
- label='Dashboard',
- route='/#/workspaces/{workspace_id}/dashboard',
- hexcolor='#252525',
- icon="",
- )
- all_content_menu_entry = WorkspaceMenuEntry(
- slug="contents/all",
- label="Tous les contenus",
- route="/#/workspaces/{workspace_id}/contents",
- hexcolor="#fdfdfd",
- icon="",
- )
-
-
|