chore: typo (#3040)

This commit is contained in:
Anthony Angel
2024-01-18 09:54:55 +00:00
committed by GitHub
parent 190d11d7de
commit 4df17cf5f1
2 changed files with 2 additions and 2 deletions

View File

@@ -732,7 +732,7 @@ async fn connect_slack_callback(
"INSERT INTO group_ (workspace_id, name, summary, extra_perms) VALUES ($1, $2, $3, $4) ON CONFLICT DO NOTHING",
w_id,
"slack",
"The group slack commands act on belhalf of",
"The group slack commands act on behalf of",
serde_json::json!({username_to_permissioned_as(&authed.username): true})
)
.execute(&mut *tx)

View File

@@ -1117,7 +1117,7 @@ async fn edit_error_handler(
"INSERT INTO group_ (workspace_id, name, summary, extra_perms) VALUES ($1, $2, $3, $4) ON CONFLICT DO NOTHING",
w_id,
"error_handler",
"The group the error handler acts on belhalf of",
"The group the error handler acts on behalf of",
serde_json::json!({username_to_permissioned_as(&authed.username): true})
)
.execute(&mut *tx)