diff options
author | Ivan Chen <ivan@tagg.id> | 2021-06-09 17:41:29 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-09 17:41:29 -0400 |
commit | d13d12980555cb1f659ae5108c52f089a54c3f57 (patch) | |
tree | 145098b27611a955d40118046e275a6ae940d969 /src/constants/api.ts | |
parent | 587d08dc8f0508b6efa76cc7d57f21ac2a5fd9fb (diff) | |
parent | 93796732be3f5070c0a124d29533396f79736c83 (diff) |
Merge pull request #456 from brian-tagg/tma872-purple-indicator
[TMA-872] purple indicator
Diffstat (limited to 'src/constants/api.ts')
-rw-r--r-- | src/constants/api.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/constants/api.ts b/src/constants/api.ts index f02ee407..b55489d9 100644 --- a/src/constants/api.ts +++ b/src/constants/api.ts @@ -45,6 +45,8 @@ export const BLOCK_USER_ENDPOINT: string = API_URL + 'block/'; export const PASSWORD_RESET_ENDPOINT: string = API_URL + 'password-reset/'; export const MOMENT_CATEGORY_ENDPOINT: string = API_URL + 'moment-category/'; export const NOTIFICATIONS_ENDPOINT: string = API_URL + 'notifications/'; +export const NOTIFICATIONS_COUNT_ENDPOINT: string = API_URL + 'notifications/unread_count/'; +export const NOTIFICATIONS_DATE: string = API_URL + 'notifications/seen/'; export const DISCOVER_ENDPOINT: string = API_URL + 'discover/'; export const SEARCH_BUTTONS_ENDPOPINT: string = DISCOVER_ENDPOINT + 'search_buttons/'; |