File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,8 @@ export async function verifyCommand(
13
13
env : env
14
14
) {
15
15
const token = await generateUniqueToken ( ) ;
16
+ const verificationString =
17
+ "Like to verify yourself? click the above link and authorize real dev squad to manage your discord data" ;
16
18
17
19
const response = await sendUserDiscordData (
18
20
token ,
@@ -24,7 +26,8 @@ export async function verifyCommand(
24
26
) ;
25
27
if ( response ?. status === 201 || response ?. status === 200 ) {
26
28
const verificationSiteURL = config ( env ) . VERIFICATION_SITE_URL ;
27
- const message = `${ verificationSiteURL } /discord?token=${ token } ` ;
29
+ const message =
30
+ `${ verificationSiteURL } /discord?token=${ token } \n` + verificationString ;
28
31
return discordEphemeralResponse ( message ) ;
29
32
} else {
30
33
return discordEphemeralResponse ( RETRY_COMMAND ) ;
You can’t perform that action at this time.
0 commit comments