roles

ITIL V3 角色的定义

时光毁灭记忆、已成空白 提交于 2021-01-13 00:41:22
Roles within ITIL V3 Roles are employed in order to define responsibilities. In particular, they are used to assign Process Owners to the various ITIL V3 processes, and to illustrate responsibilities for the single activities within the detailed process descriptions (EPCs). The definitions found here (in alphabetical order) are meant to be short, summing up the main characteristics of a specific ITIL V3 role. When in-depth information on a role's tasks and responsibilities is required this can, in our view, best be obtained from the EPCs. ITIL V3 roles within Service Strategy IT Steering Group

How to check if a specific user has a role? Discord js

大兔子大兔子 提交于 2020-12-26 08:39:46
问题 I know how to check if the message sender has a role: if(message.member.roles.has(role.id)) { console.log(`Yay, the author of the message has the role!`); } else { console.log(`Nope, noppers, nadda.`); } However, how can I check if specific user (using user id) has a specific role? var authorID = "111111111111111111" //Find role var role = message.guild.roles.find(role => role.name === "Private Splash Ping"); //Find member let member = message.guild.members.get(authorID); console.log(member

How to check if a specific user has a role? Discord js

泪湿孤枕 提交于 2020-12-26 08:39:09
问题 I know how to check if the message sender has a role: if(message.member.roles.has(role.id)) { console.log(`Yay, the author of the message has the role!`); } else { console.log(`Nope, noppers, nadda.`); } However, how can I check if specific user (using user id) has a specific role? var authorID = "111111111111111111" //Find role var role = message.guild.roles.find(role => role.name === "Private Splash Ping"); //Find member let member = message.guild.members.get(authorID); console.log(member