add sanctioned country response
This commit is contained in:
parent
5bbf1163e4
commit
13a1cf3d50
1 changed files with 13 additions and 0 deletions
13
index.ts
13
index.ts
|
@ -85,6 +85,19 @@ const eligibilityCmd = async ctx => {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
else if (res.status === "Sanctioned country") {
|
||||||
|
if (matchedBy === "user mention") {
|
||||||
|
return await ctx.respond({
|
||||||
|
response_type: 'ephemeral',
|
||||||
|
text: `<@${userId}> lives in a country that cannot have packages delivered to due to sanctions.`
|
||||||
|
})
|
||||||
|
} else {
|
||||||
|
return await ctx.respond({
|
||||||
|
response_type: 'ephemeral',
|
||||||
|
text: `You live in a country that cannot have packages delivered to due to sanctions.${matchedBy == "not allowed" ? " (Only whitelisted users can check other people's verification statuses.)" : ""},`
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
else {
|
else {
|
||||||
return await ctx.respond({
|
return await ctx.respond({
|
||||||
|
|
Loading…
Reference in a new issue