Skip to content

Commit

Permalink
Add support for Common tier in deployment commands (#78)
Browse files Browse the repository at this point in the history
  • Loading branch information
steebchen authored Sep 3, 2024
1 parent b6143de commit 6a84f1e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions cli/src/command/deployments/create.rs
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ impl CreateArgs {

let tier = match &self.tier {
Tier::Basic => DeploymentTier::basic,
Tier::Common => DeploymentTier::common,
Tier::Rare => DeploymentTier::rare,
Tier::Epic => DeploymentTier::epic,
};
Expand Down
1 change: 1 addition & 0 deletions cli/src/command/deployments/fork.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ impl ForkArgs {

let tier = match &self.tier {
Tier::Basic => DeploymentTier::basic,
Tier::Common => DeploymentTier::common,
Tier::Rare => DeploymentTier::rare,
Tier::Epic => DeploymentTier::epic,
};
Expand Down
1 change: 1 addition & 0 deletions cli/src/command/deployments/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ impl Deployments {
#[derive(clap::ValueEnum, Clone, Debug, serde::Serialize)]
pub enum Tier {
Basic,
Common,
Rare,
Epic,
}
1 change: 1 addition & 0 deletions cli/src/command/deployments/update.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ impl UpdateArgs {

let tier = match &self.tier {
Tier::Basic => DeploymentTier::basic,
Tier::Common => DeploymentTier::common,
Tier::Rare => DeploymentTier::rare,
Tier::Epic => DeploymentTier::epic,
};
Expand Down

0 comments on commit 6a84f1e

Please sign in to comment.