Add provider id field, relaxing name

This commit is contained in:
phil 2025-01-10 00:09:12 +01:00
parent 57041e9233
commit 170e663ee8
4 changed files with 10 additions and 9 deletions

View file

@ -11,9 +11,10 @@ from pydantic_settings import (
class OIDCProvider(BaseModel):
name: str = ""
url: str = ""
client_id: str = ""
id: str
name: str
url: str
client_id: str
client_secret: str = ""
@computed_field