Add profile edit page

This commit is contained in:
r 2023-10-01 13:04:07 +00:00
parent 8e3999fc3d
commit 81bdc7c705
9 changed files with 314 additions and 25 deletions

View file

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

View file

@ -33,6 +33,7 @@ const (
SearchPage = "search.tmpl"
SettingsPage = "settings.tmpl"
FiltersPage = "filters.tmpl"
ProfilePage = "profile.tmpl"
MutePage = "mute.tmpl"
)