summaryrefslogtreecommitdiffstats
path: root/lib/image.js
blob: 40045b30929a77e9558a1e193ffafa9c712e12cd (plain)
1
2
3
4
5
// TODO: Put the project ID in a config file.
export default function(image, width = 300, height = 300) {
  if(!image || !image.secret) return '';
  return `https://images.graph.cool/v1/cj5xz8szs28930145gct82bdj/${image.secret}/${width}x${height}`;
}