add: client streams api
fix: mobile chats ui
This commit is contained in:
parent
094dd5fdb5
commit
58d206eb81
12 changed files with 152 additions and 19 deletions
|
@ -193,7 +193,11 @@ pub fn routes() -> Router {
|
|||
.route("/auth/ip/{ip}/block", post(auth::social::ip_block_request))
|
||||
.route(
|
||||
"/auth/user/{id}/_connect/{stream}",
|
||||
get(auth::profile::subscription_handler),
|
||||
any(auth::profile::subscription_handler),
|
||||
)
|
||||
.route(
|
||||
"/auth/user/{id}/_connect/{stream}/send",
|
||||
post(auth::profile::post_to_socket_request),
|
||||
)
|
||||
// warnings
|
||||
.route("/warnings/{id}", post(auth::user_warnings::create_request))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue