1
0

Added endpoint to search for users

This commit is contained in:
kolaente
2018-09-20 19:42:01 +02:00
parent 3401d7ab2c
commit 64d290bcae
5 changed files with 92 additions and 7 deletions

11
REST-Tests/users.http Normal file
View File

@ -0,0 +1,11 @@
# Get all users
GET http://localhost:8080/api/v1/users
Authorization: Bearer {{auth_token}}
######
# Search for a user
GET http://localhost:8080/api/v1/users?s=3
Authorization: Bearer {{auth_token}}
###