diff options
author | lain <lain@soykaf.club> | 2020-04-17 15:51:24 +0200 |
---|---|---|
committer | lain <lain@soykaf.club> | 2020-04-17 15:51:24 +0200 |
commit | 8c2c325598dcd85f76752a17b39ce27689a65250 (patch) | |
tree | 5283acd447e60c401631aab4b01768d3f79d142e /docs/administration/CLI_tasks | |
parent | 372614cfd3119b589c9c47619445714e8ae6c07e (diff) | |
parent | 6936854878860d1f6d04db1cd14a00208c6a5728 (diff) | |
download | pleroma-8c2c325598dcd85f76752a17b39ce27689a65250.tar.gz |
Merge branch 'develop' of git.pleroma.social:pleroma/pleroma into remake-remodel-dms
Diffstat (limited to 'docs/administration/CLI_tasks')
-rw-r--r-- | docs/administration/CLI_tasks/oauth_app.md | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/docs/administration/CLI_tasks/oauth_app.md b/docs/administration/CLI_tasks/oauth_app.md new file mode 100644 index 000000000..4d6bfc25a --- /dev/null +++ b/docs/administration/CLI_tasks/oauth_app.md @@ -0,0 +1,16 @@ +# Creating trusted OAuth App + +{! backend/administration/CLI_tasks/general_cli_task_info.include !} + +## Create trusted OAuth App. + +Optional params: + * `-s SCOPES` - scopes for app, e.g. `read,write,follow,push`. + +```sh tab="OTP" + ./bin/pleroma_ctl app create -n APP_NAME -r REDIRECT_URI +``` + +```sh tab="From Source" +mix pleroma.app create -n APP_NAME -r REDIRECT_URI +```
\ No newline at end of file |