Implement Show Conversation Link

This commit is contained in:
Chi Vinh Le
2018-09-25 21:42:15 +02:00
parent 122b9e9871
commit b6554b344c
13 changed files with 147 additions and 54 deletions
@@ -0,0 +1,8 @@
import { modifyQuery } from "talk-framework/utils";
export default function getURLWithCommentID(
assetURL: string,
commentID?: string
) {
return modifyQuery(assetURL, { commentID });
}
@@ -1 +1,2 @@
export { default as getMe } from "./getMe";
export { default as getURLWithCommentID } from "./getURLWithCommentID";