This commit is contained in:
insert 2024-08-05 17:52:14 -04:00
parent 7927709a62
commit 8d50f5103f
Signed by: insert
GPG key ID: A70775C389ACF105

View file

@ -85,7 +85,9 @@ class wordpress(commands.Cog):
description="create a blog post", description="create a blog post",
) )
async def blog(self, inter: disnake.ApplicationCommandInteraction): async def blog(self, inter: disnake.ApplicationCommandInteraction):
print("blog endpoint:")
print(self.bot.blogendpoint) print(self.bot.blogendpoint)
print(self.bot.blogcredentials)
await inter.response.send_modal(modal=ApplicationModal(self.bot.blogendpoint,self.bot.blogcredentials)) await inter.response.send_modal(modal=ApplicationModal(self.bot.blogendpoint,self.bot.blogcredentials))
def setup(bot: commands.Bot): def setup(bot: commands.Bot):