Add support for expiring mutes

This commit is contained in:
r 2022-12-17 08:26:51 +00:00
parent 9816045c21
commit 5147897c6c
7 changed files with 64 additions and 25 deletions

View file

@ -155,3 +155,8 @@ type FiltersData struct {
*CommonData
Filters []*mastodon.Filter
}
type MuteData struct {
*CommonData
User *mastodon.Account
}

View file

@ -33,6 +33,7 @@ const (
SearchPage = "search.tmpl"
SettingsPage = "settings.tmpl"
FiltersPage = "filters.tmpl"
MutePage = "mute.tmpl"
)
type TemplateData struct {