Skip to content

Commit

Permalink
feat(deployments): add support for Legendary deployment tier (#183)
Browse files Browse the repository at this point in the history
  • Loading branch information
steebchen authored Feb 24, 2025
1 parent ac0335e commit eef02e6
Show file tree
Hide file tree
Showing 3 changed files with 3 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 @@ -89,6 +89,7 @@ impl CreateArgs {
Tier::Basic => DeploymentTier::basic,
Tier::Common => DeploymentTier::common,
Tier::Epic => DeploymentTier::epic,
Tier::Legendary => DeploymentTier::legendary,
Tier::Insane => DeploymentTier::insane,
};

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 @@ -55,6 +55,7 @@ pub enum Tier {
Basic,
Common,
Epic,
Legendary,
Insane,
}

Expand Down
1 change: 1 addition & 0 deletions cli/src/command/deployments/update.rs
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ impl UpdateArgs {
Some(Tier::Basic) => Some(DeploymentTier::basic),
Some(Tier::Common) => Some(DeploymentTier::common),
Some(Tier::Epic) => Some(DeploymentTier::epic),
Some(Tier::Legendary) => Some(DeploymentTier::legendary),
Some(Tier::Insane) => Some(DeploymentTier::insane),
};

Expand Down

0 comments on commit eef02e6

Please sign in to comment.