this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix:updated slugtype size to accept uuid (#3404)

authored by

Nandkishor R and committed by
GitHub
e2f9ead2 cb57ee0b

+1 -1
+1 -1
care/emr/utils/slug_type.py
··· 45 45 46 46 # Define reusable slug types with different lengths 47 47 SlugType = Annotated[ 48 - str, Field(min_length=5, max_length=25), AfterValidator(slug_validator) 48 + str, Field(min_length=5, max_length=36), AfterValidator(slug_validator) 49 49 ] 50 50 51 51