Skip to content

Commit

Permalink
fix(cli): set default Discourse API user (#1248)
Browse files Browse the repository at this point in the history
  • Loading branch information
sasa-tomic authored Jan 24, 2025
1 parent 43d1aea commit 141ca52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rs/cli/src/commands/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ pub struct DiscourseOpts {
pub(crate) discourse_api_key: Option<String>,

/// Api user that will interact with the forum
#[clap(long, env = "DISCOURSE_API_USER", global = true)]
#[clap(long, env = "DISCOURSE_API_USER", global = true, default_value = "DRE-Team")]
pub(crate) discourse_api_user: Option<String>,

/// Api url used to interact with the forum
Expand Down

0 comments on commit 141ca52

Please sign in to comment.