Fix invites for new website API

This commit is contained in:
Tom 2022-08-17 23:00:16 +02:00
parent 6980cbbb17
commit dac53d1506

View file

@ -1,5 +1,3 @@
use std::fmt::format;
use crate::{Context, Error}; use crate::{Context, Error};
use serde::Deserialize; use serde::Deserialize;
@ -10,15 +8,16 @@ struct Message {
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
struct InviteData { struct InviteData {
id: String, // id: String,
token: String, // token: String,
isUsed: bool, // isUsed: bool,
isHighTier: bool, #[serde(rename = "isHighTier")]
isCustom: bool, is_high_tier: bool,
// isCustom: bool,
} }
#[poise::command(slash_command, ephemeral)] #[poise::command(slash_command, ephemeral)]
pub async fn invites ( pub async fn invites(
ctx: Context<'_>, ctx: Context<'_>,
#[description = "The invite to check"] invite: String, #[description = "The invite to check"] invite: String,
) -> Result<(), Error> { ) -> Result<(), Error> {
@ -40,7 +39,7 @@ pub async fn invites (
} }
200 => { 200 => {
let data: InviteData = req.json().await?; let data: InviteData = req.json().await?;
if data.isHighTier { if data.is_high_tier {
format!( format!(
"Invite `{}` is still available and grants High Tier status", "Invite `{}` is still available and grants High Tier status",
invite invite