This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

core / web / src / lib / avatar.ts
236 B 4 lines
1// the service wants signed urls and the secret is server side, so this points 2// at the route that signs 3export const avatarUrl = (did: string, tiny = false): string => 4 `/avatar/${encodeURIComponent(did)}${tiny ? "?size=tiny" : ""}`;