mirror of
https://github.com/Govor-team/Govor.git
synced 2026-07-21 11:44:56 +00:00
GITBOOK-10: No subject
This commit is contained in:
committed by
gitbook-bot
parent
1d442d037c
commit
6d4d269d74
+47
-1
@@ -1,2 +1,48 @@
|
||||
# Page
|
||||
---
|
||||
icon: face-confounded
|
||||
coverY: 0
|
||||
---
|
||||
|
||||
# The invitation code RU
|
||||
|
||||
### Что это такое
|
||||
|
||||
**Код приглашения** — это временный механизм доступа, действующий на этапах **альфа-** и **бета-тестирования** мессенджера **Говор**.\
|
||||
Он используется для **ограничения количества аккаунтов** и **контроля числа пользователей**, получающих ранний доступ к продукту.
|
||||
|
||||
Пока Говор находится в стадии активной разработки и внутреннего тестирования, регистрация новых пользователей возможна **только при наличии действующего кода приглашения**.
|
||||
|
||||
### Как получить код приглашения
|
||||
|
||||
Коды приглашения **создаются администрацией проекта** и **выдаются вручную** по мере готовности новых тестовых слотов.
|
||||
|
||||
Чтобы запросить код приглашения:
|
||||
|
||||
1. Свяжитесь с командой разработчиков.
|
||||
2. Кратко опишите, зачем вы хотите протестировать Говор.
|
||||
3. Дождитесь ответа с вашим уникальным кодом.
|
||||
|
||||
📩 **Контакт для запроса:**\
|
||||
`BurntRoostersOfficial@protonmail.com`
|
||||
|
||||
### Как выглядит код
|
||||
|
||||
Код приглашения представляет собой **уникальный случайно сгенерированный идентификатор** (объект `Guid`).\
|
||||
Пример:
|
||||
|
||||
```
|
||||
c7a5f1b3-8c64-47e2-9e3e-b7df6a2b021f
|
||||
```
|
||||
|
||||
### Ограничения
|
||||
|
||||
Каждый код приглашения имеет:
|
||||
|
||||
* 🔹 **Ограниченное количество регистраций.**\
|
||||
После достижения лимита использование кода становится невозможным.
|
||||
* ⏳ **Ограниченный срок действия.**\
|
||||
По истечении времени жизни код автоматически теряет актуальность.
|
||||
|
||||
### После официального релиза
|
||||
|
||||
После выхода **первой стабильной версии Говора** система кодов приглашений будет **отключена**, и регистрация станет **открытой для всех пользователей**.
|
||||
|
||||
+16
-16
@@ -1,29 +1,29 @@
|
||||
# Table of contents
|
||||
|
||||
* [Page](README.md)
|
||||
* [The invitation code RU](README.md)
|
||||
|
||||
## Endpoints
|
||||
|
||||
* [Authentication](../docs/endpoints/authentication/README.md)
|
||||
* [AuthController](../docs/endpoints/authentication/authcontroller.md)
|
||||
* [RefreshController](../docs/endpoints/authentication/refreshcontroller.md)
|
||||
* [SessionController](../docs/endpoints/sessioncontroller.md)
|
||||
* [FriendshipController](../docs/endpoints/friendshipcontroller.md)
|
||||
* [FriendsRequestQueryController](../docs/endpoints/friendsrequestquerycontroller.md)
|
||||
* [MediaController](../docs/endpoints/mediacontroller.md)
|
||||
* [ChatLoadController](../docs/endpoints/chatloadcontroller.md)
|
||||
* [OnlinePingingController(не работает)](../docs/endpoints/onlinepingingcontroller-ne-rabotaet.md)
|
||||
* [Authentication](endpoints/authentication/README.md)
|
||||
* [AuthController](endpoints/authentication/authcontroller.md)
|
||||
* [RefreshController](endpoints/authentication/refreshcontroller.md)
|
||||
* [SessionController](endpoints/sessioncontroller.md)
|
||||
* [FriendshipController](endpoints/friendshipcontroller.md)
|
||||
* [FriendsRequestQueryController](endpoints/friendsrequestquerycontroller.md)
|
||||
* [MediaController](endpoints/mediacontroller.md)
|
||||
* [ChatLoadController](endpoints/chatloadcontroller.md)
|
||||
* [OnlinePingingController(не работает)](endpoints/onlinepingingcontroller-ne-rabotaet.md)
|
||||
|
||||
## SignalR
|
||||
|
||||
* [PresenceHub](../docs/signalr/presencehub.md)
|
||||
* [ChatHub](../docs/signalr/chathub.md)
|
||||
* [PresenceHub](signalr/presencehub.md)
|
||||
* [ChatHub](signalr/chathub.md)
|
||||
|
||||
***
|
||||
|
||||
* [FriendsHub](../docs/friendshub/README.md)
|
||||
* [FriendsHub Client (Java)](../docs/friendshub/friendshub-client-java.md)
|
||||
* [FriendsHub](friendshub/README.md)
|
||||
* [FriendsHub Client (Java)](friendshub/friendshub-client-java.md)
|
||||
|
||||
## Code Docs 
|
||||
## Code Docs
|
||||
|
||||
* [HubResult\<T>](../docs/code-docs/hubresult-less-than-t-greater-than.md)
|
||||
* [HubResult\<T>](code-docs/hubresult-less-than-t-greater-than.md)
|
||||
|
||||
@@ -75,6 +75,37 @@ description: >-
|
||||
"Unexpected Error! Please try again later."
|
||||
```
|
||||
|
||||
#### <mark style="color:$info;">CloseSession</mark>
|
||||
|
||||
* **Description**: Closes a current session for the authenticated user.
|
||||
* **Route**: `[DELETE] api/session/close/`
|
||||
* **HTTP Method**: `DELETE`
|
||||
* **Request**:
|
||||
* No body.
|
||||
* **Responses**:
|
||||
* <mark style="color:$success;">**200 OK**</mark>: Indicates session was successfully closed.
|
||||
* No body.
|
||||
* <mark style="color:$danger;">**400 Bad Request**</mark>: If `sessionId` is invalid or operation fails.
|
||||
|
||||
```json
|
||||
"string"
|
||||
```
|
||||
* <mark style="color:$danger;">**403 Forbidden**</mark>: If user lacks authorization.
|
||||
|
||||
```json
|
||||
"string"
|
||||
```
|
||||
* <mark style="color:$danger;">**404 Not Found**</mark>: If session is not found.
|
||||
|
||||
```json
|
||||
"string"
|
||||
```
|
||||
* <mark style="color:$warning;">**500 Internal Server Error**</mark>: Indicates an unexpected error.
|
||||
|
||||
```json
|
||||
"Unexpected Error! Please try again later."
|
||||
```
|
||||
|
||||
#### <mark style="color:$info;">CloseAllSessions</mark>
|
||||
|
||||
* **Description**: Closes all active sessions for the authenticated user.
|
||||
@@ -89,7 +120,7 @@ description: >-
|
||||
```json
|
||||
"string"
|
||||
```
|
||||
* <mark style="color:$danger;">**500 Internal Server Error**</mark>: Indicates an unexpected error.
|
||||
* <mark style="color:$warning;">**500 Internal Server Error**</mark>: Indicates an unexpected error.
|
||||
|
||||
```json
|
||||
"Unexpected Error! Please try again later."
|
||||
|
||||
Reference in New Issue
Block a user