* 'main' of https://github.com/ardeman/project-legalgo-go:
  fix: search news title by query
This commit is contained in:
Ardeman
2025-03-24 18:18:53 +08:00
4 changed files with 9 additions and 1 deletions
+2 -1
View File
@@ -56,11 +56,12 @@ type NewsUpdate struct {
}
type Filter struct {
Category, Tags, Active string
Category, Tags, Active, Search string
}
type NewsFilter struct {
Tags []string
Category []string
Active string
Search string
}