-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
389d8f5
commit 74728b5
Showing
3 changed files
with
124 additions
and
119 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
{ | ||
"prefix": "stp ", | ||
"guildId": "866357715566460958", | ||
"guildId": "859466350217134100", | ||
"clientId": "859496133562073109", | ||
"teamChannelId": "868461848398278716", | ||
"teamChannelId": "868866705663852554", | ||
"publicKey": "fcc3a0170458d88e0efe714528104b0e20104021d2218a9028f87d6859ca73b8", | ||
"botChannelFilter": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,25 @@ | ||
const { Embed } = require("../../lib/Embed") | ||
const Embed = require('../../lib/Embed') | ||
|
||
module.exports = { | ||
name: 'verify', | ||
description: 'verify your account with Eventpop reference code', | ||
slash: { | ||
registerData: { | ||
data: { | ||
name: 'verify', | ||
description: 'verify your account with Eventpop reference code', | ||
}, | ||
}, | ||
}, | ||
async execute({ send, member }) { | ||
send(`Sent instructions in your DM, ${member}`) | ||
member.createDM().then((channel) => { | ||
channel.send(Embed.Embed( | ||
'Verify', | ||
'enter Eventpop reference code ``#XXXXX-XXXXXXX`` in THIS channel', | ||
)) | ||
}) | ||
}, | ||
name: 'verify', | ||
description: 'verify your account with Eventpop reference code', | ||
slash: { | ||
registerData: { | ||
data: { | ||
name: 'verify', | ||
description: 'verify your account with Eventpop reference code', | ||
}, | ||
}, | ||
}, | ||
async execute({ send, member }) { | ||
send(`Sent instructions in your DM, ${member}`) | ||
member.createDM().then((channel) => { | ||
channel.send( | ||
Embed.Embed( | ||
'Verify', | ||
'enter Eventpop reference code ``#XXXXX-XXXXXXX`` in THIS channel', | ||
), | ||
) | ||
}) | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters