abwegig
Explore posts from serversBABetter Auth
•Created by abwegig on 4/14/2025 in #help
Hook into Post oauth login flow
How can I determine if to continue or not by checking account params. Because it first checks user and then account and if I stop the account hook it creates a user anyway.
5 replies
BABetter Auth
•Created by abwegig on 4/14/2025 in #help
Hook into Post oauth login flow
Thanks
5 replies
DIAdiscord.js - Imagine an app
•Created by abwegig on 5/15/2024 in #djs-questions
Weird error in connection with mongodb
✅
4 replies
DIAdiscord.js - Imagine an app
•Created by abwegig on 3/17/2024 in #djs-questions
How to ping a role an a thread but not adding them to it
Okay, thanks!
3 replies
DIAdiscord.js - Imagine an app
•Created by abwegig on 3/15/2024 in #djs-questions
How can I create a private thread? ([email protected])
okay, thanks
7 replies
DIAdiscord.js - Imagine an app
•Created by abwegig on 3/15/2024 in #djs-questions
How can I create a private thread? ([email protected])
if (interaction.customId === "selectReasonMenu") {
const selectedValue = interaction.values[0];
console.log(
Ausgewählter Wert: ${selectedValue}
);
interaction.channel.threads
.create({
name: Ticket - ${selectedValue}
,
autoArchiveDuration: 1440,
type: ChannelType.PrivateThread,
reason: Thread für das Ticket mit dem Grund: ${selectedValue}
,
startMessage: interaction.message,
})
.then(async (thread) => {
const threadChannel = await interaction.guild.channels.fetch(
thread.id
);
await thread.members.add(interaction.user.id);
})
.catch(console.error);
}7 replies
DIAdiscord.js - Imagine an app
•Created by abwegig on 3/15/2024 in #djs-questions
How can I create a private thread? ([email protected])
no error in both cases
7 replies