feat(api): custom metrics always public
This commit is contained in:
parent
3476da47f2
commit
fa4bd8c404
1 changed files with 1 additions and 1 deletions
|
|
@ -686,7 +686,7 @@ class CustomMetricCreateSeriesSchema(BaseModel):
|
|||
class CreateCustomMetricsSchema(BaseModel):
|
||||
name: str = Field(...)
|
||||
series: List[CustomMetricCreateSeriesSchema] = Field(..., min_items=1)
|
||||
is_public: Optional[bool] = Field(False)
|
||||
is_public: Optional[bool] = Field(True)
|
||||
|
||||
class Config:
|
||||
alias_generator = attribute_to_camel_case
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue