Method
Explore posts from serversCDCloudflare Developers
•Created by Method on 10/4/2023 in #general-help
how do I block specific strings in my url?
for example, I want a user to go to /test but I want to block it if they try /test:abc
4 replies
DIAdiscord.js - Imagine an app
•Created by Method on 8/8/2023 in #djs-questions
Running slash command returns "ExpectedConstraintError > s.number.lessThanOrEqual'
new SlashCommandBuilder()
.setName('search')
.setDescription('Search Test')
.setDefaultPermission(true)
.addStringOption(option =>
option
.setName('Term')
.setDescription('TermTo Search For')
.setRequired(true)
)
)
5 replies