coyotte508's picture
coyotte508 HF staff
♻️ Migrate pictures to Object Storage
142fc6a
raw
history blame contribute delete
No virus
180 Bytes
import type { Picture } from './types/Picture';
export function pictureLink(picture: Picture) {
return `/photos/raw/${picture._id}/format/${picture.storage.formats[0].width}`;
}