Add tags field to Archon /create request

This commit is contained in:
fetch 2025-08-07 16:57:01 -04:00
parent 2796d770f7
commit 8546efd572
No known key found for this signature in database
2 changed files with 2 additions and 0 deletions

View File

@ -2541,6 +2541,7 @@ pub async fn try_process_user_redeemal(
}, },
source: crate::util::archon::Empty::default(), source: crate::util::archon::Empty::default(),
region, region,
tags: vec!["medal".to_owned()],
}) })
.await?; .await?;

View File

@ -26,6 +26,7 @@ pub struct CreateServerRequest {
// an empty struct, as a source. // an empty struct, as a source.
pub source: Empty, pub source: Empty,
pub region: String, pub region: String,
pub tags: Vec<String>,
} }
#[derive(Clone)] #[derive(Clone)]