11
|
1 local Luan = require "luan:Luan.luan"
|
|
2 local error = Luan.error
|
|
3 local Http = require "luan:http/Http.luan"
|
|
4 local User = require "site:/lib/User.luan"
|
|
5 local current_user = User.current or error()
|
|
6 local Chat = require "site:/lib/Chat.luan"
|
|
7 local get_chat_by_id = Chat.get_by_id or error()
|
16
|
8 local Shared = require "site:/lib/Shared.luan"
|
|
9 local http_push_to_users = Shared.http_push_to_users or error()
|
11
|
10
|
|
11
|
|
12 return function()
|
|
13 local chat = Http.request.parameters.chat or error()
|
|
14 chat = get_chat_by_id(chat) or error()
|
|
15 local user = current_user() or error()
|
|
16 chat.delete()
|
16
|
17 local js = "getChats(null)"
|
|
18 http_push_to_users( chat.user_ids, js )
|
11
|
19 end
|