diff --git a/service/service.go b/service/service.go index de450b9..f268e30 100644 --- a/service/service.go +++ b/service/service.go @@ -517,6 +517,18 @@ func (svc *service) ServeUserPage(c *model.Client, id string, pageType string, nextLink = fmt.Sprintf("/user/%s/bookmarks?max_id=%s", id, pg.MaxID) } + case "mutes": + if !isCurrent { + return errInvalidArgument + } + users, err = c.GetMutes(ctx, &pg) + if err != nil { + return + } + if len(users) == 20 && len(pg.MaxID) > 0 { + nextLink = fmt.Sprintf("/user/%s/mutes?max_id=%s", + id, pg.MaxID) + } default: return errInvalidArgument } diff --git a/templates/user.tmpl b/templates/user.tmpl index 3bb7523..ce91091 100644 --- a/templates/user.tmpl +++ b/templates/user.tmpl @@ -99,7 +99,8 @@ {{if .IsCurrent}}
- bookmarks + bookmarks - + mutes
{{end}}
@@ -143,6 +144,10 @@ {{else}}
No data found
{{end}} + +{{else if eq .Type "mutes"}} +
Mutes
+{{template "userlist.tmpl" (WithContext .Users $.Ctx)}} {{end}}