diff options
author | Ivan Chen <ivan@tagg.id> | 2021-05-11 18:56:28 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-11 18:56:28 -0400 |
commit | 68d10064cf1dcd2a774a4b2299f3a64f8fb75c60 (patch) | |
tree | e8367c2a8cdb19e52c2a70b73ab2a89865efd54a /src/constants/api.ts | |
parent | 610b6c9ddd2414b3b0d5c4cc24c35ef6e9e68513 (diff) | |
parent | 51f397132d227edf5e07d48d673ee167d2aa5937 (diff) |
Merge pull request #409 from IvanIFChen/tma799-comment-likes
[TMA-799] Comments likes
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 e5ce9e77..9d3f70c9 100644 --- a/src/constants/api.ts +++ b/src/constants/api.ts @@ -33,6 +33,8 @@ export const MOMENTS_ENDPOINT: string = API_URL + 'moments/'; 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/'; +export const COMMENT_REACTIONS_ENDPOINT: string = API_URL + 'reaction-comment/'; +export const COMMENT_REACTIONS_REPLY_ENDPOINT: string = API_URL + 'reaction-reply/'; export const FRIENDS_ENDPOINT: string = API_URL + 'friends/'; export const ALL_USERS_ENDPOINT: string = API_URL + 'users/'; export const REPORT_ISSUE_ENDPOINT: string = API_URL + 'report/'; |