diff options
author | Ivan Chen <ivan@tagg.id> | 2021-05-21 20:10:14 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-21 20:10:14 -0400 |
commit | 4849c65ff2163e1a77dcb26a12ff68840df225e7 (patch) | |
tree | 8efb8f40c23156551a3628c3eac93945980a7325 /src/constants/api.ts | |
parent | 9315aa31ad4d6c305e62853a3ab7e4a484ecce98 (diff) | |
parent | 4434d06df897f844832a92d66956825ea58c2b01 (diff) |
Merge pull request #440 from grusuTagg/tma884-moment-view-tags
Fetch momentTag objects from the backend
Diffstat (limited to 'src/constants/api.ts')
-rw-r--r-- | src/constants/api.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/constants/api.ts b/src/constants/api.ts index 6cc357f5..d52fc203 100644 --- a/src/constants/api.ts +++ b/src/constants/api.ts @@ -31,6 +31,7 @@ export const SEARCH_ENDPOINT: string = API_URL + 'search/'; export const SEARCH_ENDPOINT_MESSAGES: string = API_URL + 'search/messages/'; export const SEARCH_ENDPOINT_SUGGESTED: string = API_URL + 'search/suggested/'; export const MOMENTS_ENDPOINT: string = API_URL + 'moments/'; +export const MOMENT_TAGS_ENDPOINT: string = API_URL + 'moments/tags/'; export const MOMENT_THUMBNAIL_ENDPOINT: string = API_URL + 'moment-thumbnail/'; export const VERIFY_INVITATION_CODE_ENDPOUNT: string = API_URL + 'verify-code/'; export const COMMENTS_ENDPOINT: string = API_URL + 'comments/'; |