Modifications to allow biography

Start work on allowing users to modify their biography
This commit is contained in:
Robin Malley 2022-09-02 23:22:47 +00:00
parent acebec5d73
commit f0c7ae13fe
1 changed files with 6 additions and 4 deletions

View File

@ -121,18 +121,20 @@ domain * {
validate post tags v_any
validate post unlisted v_checkbox
}
route /_bio {
handler edit_bio
methods get
methods get post
validate post text v_any
}
route /_login {
handler login
methods get post
validate qs:get user v_subdomain
validate qs:get pass v_any
validate post user v_subdomain
validate post pass v_any
}
route /_logout {