mirror of
https://gitea.phreedom.club/localhost_frssoft/bloat.git
synced 2025-05-05 03:18:44 +00:00
Add blocks list
This commit is contained in:
parent
0df863ac40
commit
59692b7155
2 changed files with 18 additions and 1 deletions
|
@ -529,6 +529,18 @@ func (svc *service) ServeUserPage(c *model.Client, id string, pageType string,
|
|||
nextLink = fmt.Sprintf("/user/%s/mutes?max_id=%s",
|
||||
id, pg.MaxID)
|
||||
}
|
||||
case "blocks":
|
||||
if !isCurrent {
|
||||
return errInvalidArgument
|
||||
}
|
||||
users, err = c.GetBlocks(ctx, &pg)
|
||||
if err != nil {
|
||||
return
|
||||
}
|
||||
if len(users) == 20 && len(pg.MaxID) > 0 {
|
||||
nextLink = fmt.Sprintf("/user/%s/blocks?max_id=%s",
|
||||
id, pg.MaxID)
|
||||
}
|
||||
default:
|
||||
return errInvalidArgument
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue