Allow filter post via tags

This commit is contained in:
2024-12-01 22:51:56 +08:00
parent 9dd03e0734
commit 2c138d06ee
2 changed files with 8 additions and 0 deletions

View File

@ -68,6 +68,10 @@ func FilterPostWithTag(tx *gorm.DB, alias string) *gorm.DB {
Where("tags.alias = ?", alias)
}
func FilterPostWithType(tx *gorm.DB, t string) *gorm.DB {
return tx.Where("type = ?", t)
}
func FilterPostWithRealm(tx *gorm.DB, id uint) *gorm.DB {
if id > 0 {
return tx.Where("realm_id = ?", id)