feat(contracts): Provide locale via post request

This commit is contained in:
Nicolai Ort 2024-12-03 14:47:53 +01:00
parent 56e09dafb9
commit ba7e02fa30
Signed by: niggl
GPG Key ID: 13AFA55AF62F269F

View File

@ -2,6 +2,7 @@ package models
type Contract struct { type Contract struct {
Runners []Runner `json:"runners"` Runners []Runner `json:"runners"`
Locale string `json:"locale" enums:"en,de"`
} }
type Runner struct { type Runner struct {