Merge RspamdSymbol into SpamTestDetail in OpenAPI spec

Add params field to SpamTestDetail, update RspamdResult.symbols to
reference SpamTestDetail instead of the now-removed RspamdSymbol schema,
and update Go code accordingly.
This commit is contained in:
nemunaire 2026-03-26 08:58:03 +07:00
commit 5c104f3c99
3 changed files with 8 additions and 23 deletions

View file

@ -131,7 +131,7 @@ func TestParseSpamdResult(t *testing.T) {
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
result := &api.RspamdResult{
Symbols: make(map[string]api.RspamdSymbol),
Symbols: make(map[string]api.SpamTestDetail),
}
analyzer.parseSpamdResult(tt.header, result)