1
Fork 0
mirror of https://github.com/pds-nest/nest.git synced 2024-11-22 04:54:18 +00:00

I am a big dumb-dumb

This commit is contained in:
Lorenzo Balugani 2021-05-28 12:47:09 +02:00
parent 040cfc4cea
commit 000e688a09

View file

@ -48,7 +48,7 @@ def page_repository_tweets(rid):
return json_error("Could not find repository", REPOSITORY_NOT_FOUND), 404 return json_error("Could not find repository", REPOSITORY_NOT_FOUND), 404
user = find_user(get_jwt_identity()) user = find_user(get_jwt_identity())
if user.email != repository.owner_id and user.email not in [a.email for a in Repository.authorizations]: if user.email != repository.owner_id and user.email not in [a.email for a in repository.authorizations]:
return json_error("You are not authorized.", USER_NOT_AUTHORIZED), 403 return json_error("You are not authorized.", USER_NOT_AUTHORIZED), 403
if request.method == "GET": if request.method == "GET":