Files
lucent-laravel/front/js/svelte/files/imageserver.js
T
2023-10-17 18:56:37 +03:00

12 lines
309 B
JavaScript

import {getContext} from "svelte";
export function imgurl(record) {
const channel = getContext("channel")
return channel.filesUrl + `/thumbs/${record._file.path}`;
}
export function fileurl(record) {
const channel = getContext("channel")
return channel.filesUrl + `/${record._file.path}`;
}