✨ Allow filter post via tags
This commit is contained in:
		| @@ -47,6 +47,10 @@ func universalPostFilter(c *fiber.Ctx, tx *gorm.DB) (*gorm.DB, error) { | ||||
| 		tx = services.FilterPostWithTag(tx, c.Query("tag")) | ||||
| 	} | ||||
|  | ||||
| 	if len(c.Query("type")) > 0 { | ||||
| 		tx = services.FilterPostWithType(tx, c.Query("type")) | ||||
| 	} | ||||
|  | ||||
| 	return tx, nil | ||||
| } | ||||
|  | ||||
|   | ||||
| @@ -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) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user