fix: add back missing early adopter badge

This commit is contained in:
Zomatree
2025-04-22 19:44:30 +01:00
parent 02f18705f4
commit cc9ff9a632
6 changed files with 48 additions and 17 deletions

View File

@@ -70,6 +70,8 @@ max_concurrent_connections = 50
[api.livekit.nodes]
[api.users]
[pushd]
# this changes the names of the queues to not overlap
# prod/beta if they happen to be on the same exchange/instance.

View File

@@ -188,6 +188,10 @@ pub struct LiveKitNode {
pub secret: String
}
pub struct ApiUsers {
pub early_adopter_cutoff: Option<u64>
}
#[derive(Deserialize, Debug, Clone)]
pub struct Api {
pub registration: ApiRegistration,
@@ -195,6 +199,7 @@ pub struct Api {
pub security: ApiSecurity,
pub workers: ApiWorkers,
pub livekit: ApiLiveKit,
pub users: ApiUsers,
}
#[derive(Deserialize, Debug, Clone)]