add created at filter logic to users finder and API
This commit is contained in:
parent
1a7d2aba3b
commit
037ad5a5a3
2 changed files with 10 additions and 0 deletions
|
@ -0,0 +1,4 @@
|
|||
---
|
||||
title: Add creation time filters to user search API for admins
|
||||
merge_request: 12682
|
||||
author:
|
|
@ -146,6 +146,12 @@ GET /users?extern_uid=1234567&provider=github
|
|||
|
||||
You can search for users who are external with: `/users?external=true`
|
||||
|
||||
You can search users by creation date time range with:
|
||||
|
||||
```
|
||||
GET /users?created_before=2001-01-02T00:00:00.060Z&created_after=1999-01-02T00:00:00.060
|
||||
```
|
||||
|
||||
## Single user
|
||||
|
||||
Get a single user.
|
||||
|
|
Loading…
Reference in a new issue