Skip to content

Commit

Permalink
Merge pull request #86 from supertokens/search-feature-branch
Browse files Browse the repository at this point in the history
feat: Allow searching for users
  • Loading branch information
rishabhpoddar authored Mar 31, 2023
2 parents a716b3d + f061075 commit 7aef6d4
Show file tree
Hide file tree
Showing 38 changed files with 1,124 additions and 600 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [unreleased]

## [0.6.0] - 2023-03-31

- Adds search functionality to the dashboard

## [0.5.0] - 2023-03-29

- Adds telemetry to the dashboard
Expand Down
27 changes: 27 additions & 0 deletions api_spec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ tags:
description: APIs for user management features
- name: "User Details"
description: APIs for fetching and modifying information specific to one user
- name: "Search"
description: APIs for search
- name: "Telemetry"
description: APIs related to recording telemetry from the dashboard

Expand Down Expand Up @@ -124,6 +126,7 @@ paths:
get:
tags:
- User Management
- Search
summary: Get a list of all users. This API is paginated
operationId: getUsersPaginated
parameters:
Expand Down Expand Up @@ -152,6 +155,12 @@ paths:
enum:
- "ASC"
- "DESC"
- name: <search_tag>
description: refer to the search tags API to know what tags to use
required: false
in: query
schema:
type: string
responses:
200:
description: Success
Expand Down Expand Up @@ -1146,6 +1155,24 @@ paths:
type: string
enum:
- Not Found
/search/tags:
get:
tags:
- Search
summary: Request to get all search tags supported
responses:
200:
description: Success
content:
application/json:
schema:
type: object
properties:
tags:
type: array
items:
type: string

servers:
# Added by API Auto Mocking Plugin
- description: SwaggerHub API Auto Mocking
Expand Down
7 changes: 7 additions & 0 deletions build/asset-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,15 @@
"static/media/ST_full_logo_dark_theme.svg": "/static/media/ST_full_logo_dark_theme.svg",
"static/media/ST_full_logo_light_theme.svg": "/static/media/ST_full_logo_light_theme.svg",
"static/media/ST_icon_dark_theme.svg": "/static/media/ST_icon_dark_theme.svg",
"static/media/auth-method.svg": "/static/media/auth-method.svg",
"static/media/logo.svg": "/static/media/logo.svg",
"static/media/email.svg": "/static/media/email.svg",
"static/media/lock.svg": "/static/media/lock.svg",
"static/media/checkmark-green.svg": "/static/media/checkmark-green.svg",
"static/media/clear.svg": "/static/media/clear.svg",
"static/media/provider-apple.svg": "/static/media/provider-apple.svg",
"static/media/search.png": "/static/media/search.png",
"static/media/phone-no.svg": "/static/media/phone-no.svg",
"static/media/provider-google.svg": "/static/media/provider-google.svg",
"static/media/no-users-graphic.svg": "/static/media/no-users-graphic.svg",
"static/media/eye-stroke.svg": "/static/media/eye-stroke.svg",
Expand All @@ -26,6 +31,7 @@
"static/media/eye.svg": "/static/media/eye.svg",
"static/media/envelope-green.svg": "/static/media/envelope-green.svg",
"static/media/delete.svg": "/static/media/delete.svg",
"static/media/auth-provider.svg": "/static/media/auth-provider.svg",
"static/media/trash-opened.svg": "/static/media/trash-opened.svg",
"static/media/checkmark.svg": "/static/media/checkmark.svg",
"index.html": "/index.html",
Expand All @@ -45,6 +51,7 @@
"static/media/chevron-left.svg": "/static/media/chevron-left.svg",
"static/media/provider-facebook.svg": "/static/media/provider-facebook.svg",
"static/media/chevron-right.svg": "/static/media/chevron-right.svg",
"static/media/checkmark-yellow.svg": "/static/media/checkmark-yellow.svg",
"static/media/triangle-down.svg": "/static/media/triangle-down.svg",
"main.css.map": "/static/css/main.css.map",
"bundle.js.map": "/static/js/bundle.js.map",
Expand Down
2 changes: 1 addition & 1 deletion build/static/css/main.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/static/css/main.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/static/js/bundle.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/static/js/bundle.js.map

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions build/static/media/auth-method.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions build/static/media/auth-provider.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions build/static/media/checkmark-yellow.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions build/static/media/clear.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions build/static/media/email.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions build/static/media/phone-no.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added build/static/media/search.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 7aef6d4

Please sign in to comment.