UNPKG

@teikei/api

Version:

Teikei API server. Teikei is the software that powers ernte-teilen.org, a website that maps out Community-supported Agriculture in Germany.

13 lines (7 loc) 281 B
const addUserRolesToJwtPayload = async ctx => { const user = await ctx.app .service('users') .get(ctx.params.payload.userId, { query: { $eager: 'roles' } }) Object.assign(ctx.params.payload, { roles: user && user.roles }) } export default addUserRolesToJwtPayload