Editing user profile; Warning! Mastodon compatibility broken and editing may lost your bio

This commit is contained in:
localhost_frssoft 2022-11-04 20:55:42 +03:00
parent 53353c0e64
commit 1160d00ee1
6 changed files with 104 additions and 2 deletions

View file

@ -109,6 +109,11 @@ type UserData struct {
NextLink string
}
type UserEditData struct {
*CommonData
User *mastodon.Account
}
type UserSearchData struct {
*CommonData
User *mastodon.Account

View file

@ -34,6 +34,7 @@ const (
RetweetedByPage = "retweetedby.tmpl"
SearchPage = "search.tmpl"
SettingsPage = "settings.tmpl"
UserEditPage = "useredit.tmpl"
FiltersPage = "filters.tmpl"
)