merge with upstream

This commit is contained in:
localhost_frssoft 2023-10-12 15:32:55 +03:00
commit 4379eab5bf
25 changed files with 465 additions and 186 deletions

View file

@ -177,6 +177,11 @@ type FiltersData struct {
Filters []*mastodon.Filter
}
type ProfileData struct {
*CommonData
User *mastodon.Account
}
type MuteData struct {
*CommonData
User *mastodon.Account

View file

@ -36,6 +36,7 @@ const (
SettingsPage = "settings.tmpl"
UserEditPage = "useredit.tmpl"
FiltersPage = "filters.tmpl"
ProfilePage = "profile.tmpl"
MutePage = "mute.tmpl"
)