UpdateCacheKey needs no pattern validation

This commit is contained in:
Laura Klünder 2023-12-03 18:26:44 +01:00
parent d9d05a306f
commit 0a8e848c67

View file

@ -82,5 +82,5 @@ EditorGeometriesElemSchema = Union[
UpdateCacheKey = Annotated[
Optional[NonEmptyStr],
APIField(default=None, pattern="^c:[0-9]+$", title="the cache key under which you have cached objects"),
APIField(default=None, title="the cache key under which you have cached objects"),
]