Flask
@app.route('/api/v1/users/<user_id>')
def handler(user_id):
# route handler
# use user_id
Express
app.get('/api/v1/users/:userId', (req, res) => {
// route handler
const userId = req.params.userId;
});
For further actions, you may consider blocking this person and/or reporting abuse
Maxi Contieri ⭐⭐⭐ -
Alan Pereira -
Kunal Agrawal -
Lucas M. Ríos -
Once suspended, victoromondi1997 will not be able to comment or publish posts until their suspension is removed.
Once unsuspended, victoromondi1997 will be able to comment and publish posts again.
Once unpublished, all posts by victoromondi1997 will become hidden and only accessible to themselves.
If victoromondi1997 is not suspended, they can still re-publish their posts from their dashboard.
Once unpublished, this post will become invisible to the public and only accessible to VICTOR OMONDI.
They can still re-publish the post if they are not suspended.
Thanks for keeping DEV Community 👩💻👨💻 safe. Here is what you can do to flag victoromondi1997:
Unflagging victoromondi1997 will restore default visibility to their posts.
Top comments (0)