This commit is contained in:
@@ -28,6 +28,7 @@ pub struct Plan {
|
||||
pub id: String,
|
||||
pub name: String,
|
||||
pub amount: i64,
|
||||
pub hidden: bool,
|
||||
pub members: Option<i64>,
|
||||
pub blossom: bool,
|
||||
pub livekit: bool,
|
||||
|
||||
@@ -23,6 +23,7 @@ pub fn list_plans() -> Vec<Plan> {
|
||||
id: "free".to_string(),
|
||||
name: "Free".to_string(),
|
||||
amount: 0,
|
||||
hidden: false,
|
||||
members: Some(10),
|
||||
blossom: false,
|
||||
livekit: false,
|
||||
@@ -31,6 +32,7 @@ pub fn list_plans() -> Vec<Plan> {
|
||||
id: "basic".to_string(),
|
||||
name: "Basic".to_string(),
|
||||
amount: 500,
|
||||
hidden: false,
|
||||
members: Some(100),
|
||||
blossom: true,
|
||||
livekit: true,
|
||||
@@ -39,6 +41,7 @@ pub fn list_plans() -> Vec<Plan> {
|
||||
id: "growth".to_string(),
|
||||
name: "Growth".to_string(),
|
||||
amount: 2500,
|
||||
hidden: false,
|
||||
members: None,
|
||||
blossom: true,
|
||||
livekit: true,
|
||||
|
||||
Reference in New Issue
Block a user