chore: refactor url creation
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import { fetchURL, fetchJSON, removePrefix } from "./utils";
|
||||
import { fetchURL, fetchJSON, removePrefix, createURL } from "./utils";
|
||||
|
||||
export async function list() {
|
||||
return fetchJSON("/api/shares");
|
||||
@@ -34,3 +34,7 @@ export async function create(url, password = "", expires = "", unit = "hours") {
|
||||
body: body,
|
||||
});
|
||||
}
|
||||
|
||||
export function getShareURL(share) {
|
||||
return createURL("share/" + share.hash, {}, false);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user