Purge planning since it getting new data is kinda broken with api changes.
This commit is contained in:
parent
ed9330667b
commit
76cb4f18da
|
@ -3,7 +3,7 @@ use poise::serenity_prelude as serenity;
|
||||||
|
|
||||||
pub mod invites;
|
pub mod invites;
|
||||||
pub mod links;
|
pub mod links;
|
||||||
pub mod planning;
|
// pub mod planning;
|
||||||
pub mod schedule;
|
pub mod schedule;
|
||||||
pub mod utils;
|
pub mod utils;
|
||||||
|
|
||||||
|
@ -68,21 +68,21 @@ pub async fn boop(ctx: Context<'_>) -> Result<(), Error> {
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#[poise::command(track_edits, slash_command)]
|
#[poise::command(track_edits, slash_command)]
|
||||||
pub async fn fix(ctx: Context<'_>) -> Result<(), Error> {
|
pub async fn fix(ctx: Context<'_>) -> Result<(), Error> {
|
||||||
let uuid_fix = ctx.id();
|
let uuid_fix = ctx.id();
|
||||||
|
|
||||||
ctx.send(|m| {
|
ctx.send(|m| {
|
||||||
m.content("You want to fix things? Just press the magic fix button.").components(|c| {
|
m.content("You want to fix things? Just press the magic fix button.")
|
||||||
c.create_action_row(|ar| {
|
.components(|c| {
|
||||||
ar.create_button(|b| {
|
c.create_action_row(|ar| {
|
||||||
b.style(serenity::ButtonStyle::Success)
|
ar.create_button(|b| {
|
||||||
.label("Fix")
|
b.style(serenity::ButtonStyle::Success)
|
||||||
.custom_id(uuid_fix)
|
.label("Fix")
|
||||||
|
.custom_id(uuid_fix)
|
||||||
|
})
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
})
|
|
||||||
})
|
})
|
||||||
.await?;
|
.await?;
|
||||||
|
|
||||||
|
@ -110,9 +110,8 @@ pub async fn fix(ctx: Context<'_>) -> Result<(), Error> {
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
pub fn get_links(
|
pub fn get_links(
|
||||||
) -> poise::Command<super::Data, Box<(dyn std::error::Error + Sync + std::marker::Send + 'static)>>
|
) -> poise::Command<super::Data, Box<(dyn std::error::Error + std::marker::Send + Sync + 'static)>>
|
||||||
{
|
{
|
||||||
// poise::Command {
|
// poise::Command {
|
||||||
// subcommands: vec![
|
// subcommands: vec![
|
||||||
|
|
Loading…
Reference in a new issue