feat(GODT-2597): Implement contact specific settings in integration tests.

This commit is contained in:
Romain Le Jeune
2023-09-15 10:53:58 +00:00
parent cab32d5d5a
commit fa794a982b
9 changed files with 577 additions and 6 deletions

View File

@ -327,3 +327,12 @@ func mustParseBool(s string) bool {
return v
}
type Contact struct {
Name string `bdd:"name"`
Email string `bdd:"email"`
Format string `bdd:"format"`
Scheme string `bdd:"scheme"`
Sign string `bdd:"signature"`
Encrypt string `bdd:"encryption"`
}