1
0
mirror of https://github.com/pocket-id/pocket-id.git synced 2026-02-16 18:45:17 +00:00

fix: remove custom claim key restrictions

This commit is contained in:
Elias Schneider
2025-03-16 14:11:33 +01:00
parent 26e05947fe
commit 9f28503d6c
3 changed files with 1 additions and 24 deletions

View File

@@ -6,6 +6,6 @@ type CustomClaimDto struct {
}
type CustomClaimCreateDto struct {
Key string `json:"key" binding:"required,claimKey"`
Key string `json:"key" binding:"required"`
Value string `json:"value" binding:"required"`
}