本文整理汇总了TypeScript中claims/claimStoreClient.ClaimStoreClient.addRoleToUser方法的典型用法代码示例。如果您正苦于以下问题:TypeScript ClaimStoreClient.addRoleToUser方法的具体用法?TypeScript ClaimStoreClient.addRoleToUser怎么用?TypeScript ClaimStoreClient.addRoleToUser使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类claims/claimStoreClient.ClaimStoreClient
的用法示例。
在下文中一共展示了ClaimStoreClient.addRoleToUser方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: DraftClaim
ErrorHandling.apply(async (req: express.Request, res: express.Response) => {
const draft: Draft<DraftClaim> = res.locals.claimDraft
const user: User = res.locals.user
draft.document = new DraftClaim().deserialize(prepareClaimDraft(user.email))
await new DraftService().save(draft, user.bearerToken)
const roles: string[] = await claimStoreClient.retrieveUserRoles(user)
if (roles && !roles.some(role => role.includes('cmc-new-features-consent'))) {
await claimStoreClient.addRoleToUser(user, 'cmc-new-features-consent-given')
}
res.redirect(ClaimPaths.checkAndSendPage.uri)
})
示例2: renderView
ErrorHandling.apply(async (req: express.Request, res: express.Response) => {
const form: Form<FeatureConsentResponse> = req.body
const user: User = res.locals.user
if (form.hasErrors()) {
renderView(form, res)
} else {
let roleName
if (form.model.consentResponse.option === YesNoOption.YES.option) {
roleName = 'cmc-new-features-consent-given'
} else {
roleName = 'cmc-new-features-consent-not-given'
}
await claimStoreClient.addRoleToUser(user, roleName)
trackCustomEvent('New features consent - ' + roleName, {})
res.redirect(ClaimPaths.taskListPage.uri)
}
}))