Added endpoint to search for users

This commit is contained in:
kolaente 2018-09-20 19:42:01 +02:00
parent 3401d7ab2c
commit 64d290bcae
Signed by untrusted user who does not match committer: konrad
GPG key ID: F40E70337AB24C9B
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}}
###