This commit is contained in:
Aevann1 2021-11-23 02:04:13 +02:00
parent 70e32150a8
commit ba8b92a6bc
6 changed files with 79 additions and 5 deletions

View file

@ -782,6 +782,11 @@ def user_profile_uid(id):
x=get_account(id)
return redirect(x.profile_url)
@app.get("/@<username>/pic")
@limiter.exempt
def user_profile_name(username):
x = get_user(username)
return redirect(x.profile_url)
@app.get("/@<username>/saved/posts")
@auth_required