mirror of
https://github.com/System-End/plura.git
synced 2026-04-19 16:28:21 +00:00
fix: fully remove mentions of system renaming
This commit is contained in:
parent
1185763ea0
commit
66e98576ec
1 changed files with 5 additions and 2 deletions
|
|
@ -184,7 +184,10 @@ impl System {
|
|||
{
|
||||
debug!(system_id = %system.id, "User already has a system");
|
||||
return Ok(SlackCommandEventResponse::new(
|
||||
SlackMessageContent::new().with_text("You already have a system! If you need to reauthenticate, run /system reauth. If you need to change your system name, run /system rename".into()),
|
||||
SlackMessageContent::new().with_text(
|
||||
"You already have a system! If you need to reauthenticate, run /system reauth."
|
||||
.into(),
|
||||
),
|
||||
));
|
||||
}
|
||||
|
||||
|
|
@ -241,7 +244,7 @@ macro_rules! fetch_system {
|
|||
::tracing::debug!("User does not have a system");
|
||||
return Ok(SlackCommandEventResponse::new(
|
||||
SlackMessageContent::new().with_text(
|
||||
"You don't have a system yet! Make one with `/system create <name>`".into(),
|
||||
"You don't have a system yet! Make one with `/system create`".into(),
|
||||
),
|
||||
));
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue