We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 52da858 commit 2799c56Copy full SHA for 2799c56
src/codesphere/resources/team/domain/schemas.py
@@ -1,5 +1,7 @@
1
from __future__ import annotations
2
+
3
from typing import Dict, List, Optional, TypeAlias
4
5
from pydantic import Field, RootModel
6
7
from ....core.base import CamelModel
@@ -31,10 +33,6 @@ class CustomDomainConfig(CamelModel):
31
33
32
34
35
class DomainRouting(RootModel):
- """
- Helper class to build the routing configuration.
36
37
-
38
root: RoutingMap = Field(default_factory=dict)
39
40
def add(self, path: str, workspace_ids: List[int]) -> DomainRouting:
0 commit comments