aboutsummaryrefslogtreecommitdiff
path: root/src/constants/api.ts
diff options
context:
space:
mode:
authorGeorge Rusu <george@tagg.id>2021-05-21 15:57:00 -0700
committerGeorge Rusu <george@tagg.id>2021-05-21 15:57:00 -0700
commit768c826897d8988f5e91456f213a836a7ba59f4b (patch)
tree8e3dadc5507546085a4a3037e478d8ac99b88a50 /src/constants/api.ts
parent87333873c8e47bccd99198a974a40df57619df22 (diff)
Fetch momentTag objects from the backend
Diffstat (limited to 'src/constants/api.ts')
-rw-r--r--src/constants/api.ts1
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/';