You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
add is_restricted as a UserPermission literal type in store/app/model.py, if this is set on a user, the user can no longer interact with core/abusable features on the site. Examples include (posting a listing/uploading images etc, would wan't to prevent a user from spam posting/uploading).
is_restricted can be set manually via some db management interface or, by implementing flags for suspicious behavior on the site.
Restrictions should be implemented both client side and in backend api calls.
if user has is_restricted permission disable buttons, and potentially disable various nav/page renders (could redirect/display to the user that their account has been restricted and to contact support)
various backend api routes should check if user is_restricted before allowing CRUD operation
Should also look into potential rate limits for various CRUD operations to prevent abuse.
The text was updated successfully, but these errors were encountered:
add
is_restricted
as a UserPermission literal type instore/app/model.py
, if this is set on a user, the user can no longer interact with core/abusable features on the site. Examples include (posting a listing/uploading images etc, would wan't to prevent a user from spam posting/uploading).is_restricted
can be set manually via some db management interface or, by implementing flags for suspicious behavior on the site.Restrictions should be implemented both client side and in backend api calls.
is_restricted
permission disable buttons, and potentially disable various nav/page renders (could redirect/display to the user that their account has been restricted and to contact support)is_restricted
before allowing CRUD operationShould also look into potential rate limits for various CRUD operations to prevent abuse.
The text was updated successfully, but these errors were encountered: