From 593d87d2306fa40e0e41431881ee75030df2276e Mon Sep 17 00:00:00 2001 From: rmacd Date: Sat, 5 Nov 2022 22:59:41 +0000 Subject: [PATCH] Admin -> Owner (per https://github.com/mastodon/documentation/pull/972#issuecomment-1304655676) (#974) --- content/en/admin/setup.md | 4 ++-- content/zh-cn/admin/setup.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/content/en/admin/setup.md b/content/en/admin/setup.md index 9c18992c..fc8af204 100644 --- a/content/en/admin/setup.md +++ b/content/en/admin/setup.md @@ -14,7 +14,7 @@ menu: After signing up in the browser, you will need to use the command line to give your newly created account admin privileges. Assuming your username is `alice`: ```bash -RAILS_ENV=production bin/tootctl accounts modify alice --role Admin +RAILS_ENV=production bin/tootctl accounts modify alice --role Owner ``` ### From the command line {#admin-cli} @@ -26,7 +26,7 @@ RAILS_ENV=production bin/tootctl accounts create \ alice \ --email alice@example.com \ --confirmed \ - --role Admin + --role Owner ``` A randomly generated password will be shown in the terminal. diff --git a/content/zh-cn/admin/setup.md b/content/zh-cn/admin/setup.md index 4ffef8cb..c0f1c07a 100644 --- a/content/zh-cn/admin/setup.md +++ b/content/zh-cn/admin/setup.md @@ -14,7 +14,7 @@ menu: 在通过浏览器完成帐户注册后,你需要使用命令行给你新创建的帐户以管理员特权。假设你帐户的用户名为`alice`: ```bash -RAILS_ENV=production bin/tootctl accounts modify alice --role Admin +RAILS_ENV=production bin/tootctl accounts modify alice --role Owner ``` ### 通过命令行 {#admin-cli} @@ -26,7 +26,7 @@ RAILS_ENV=production bin/tootctl accounts create \ alice \ --email alice@example.com \ --confirmed \ - --role Admin + --role Owner ``` 一个随机密码将会显示在终端上。