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
243 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, width?: number): string => 4 `/avatar/${encodeURIComponent(did)}${width ? `?size=${width}` : ""}`;