diff options
author | Chocobozzz <me@florianbigard.com> | 2019-06-07 16:59:53 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2019-06-07 17:05:42 +0200 |
commit | 1f20622f2b087eaf8738d60fae00a44b9c558ca3 (patch) | |
tree | 1c8554623665ca96b8a1e6f2a6bcb8c1b5a83c2e /support | |
parent | 1a03bea0c42fa1064ce4770157b4fd2e3edd5565 (diff) | |
download | PeerTube-1f20622f2b087eaf8738d60fae00a44b9c558ca3.tar.gz PeerTube-1f20622f2b087eaf8738d60fae00a44b9c558ca3.tar.zst PeerTube-1f20622f2b087eaf8738d60fae00a44b9c558ca3.zip |
Improve registration
* Add ability to set the user display name
* Use display name to guess the username/channel name
* Add explanations about what is the purpose of a username/channel name
* Add a loader at the "done" step
Diffstat (limited to 'support')
-rw-r--r-- | support/doc/api/openapi.yaml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/support/doc/api/openapi.yaml b/support/doc/api/openapi.yaml index 5a4f6fcb2..332c0050c 100644 --- a/support/doc/api/openapi.yaml +++ b/support/doc/api/openapi.yaml | |||
@@ -2290,6 +2290,19 @@ components: | |||
2290 | email: | 2290 | email: |
2291 | type: string | 2291 | type: string |
2292 | description: 'The email of the user ' | 2292 | description: 'The email of the user ' |
2293 | displayName: | ||
2294 | type: string | ||
2295 | description: 'The user display name' | ||
2296 | channel: | ||
2297 | type: object | ||
2298 | properties: | ||
2299 | name: | ||
2300 | type: string | ||
2301 | description: 'The default channel name' | ||
2302 | displayName: | ||
2303 | type: string | ||
2304 | description: 'The default channel display name' | ||
2305 | |||
2293 | required: | 2306 | required: |
2294 | - username | 2307 | - username |
2295 | - password | 2308 | - password |