10 lines
241 B
D
10 lines
241 B
D
|
module requests.listsms;
|
||
|
|
||
|
import vibe.vibe;
|
||
|
import response;
|
||
|
import data;
|
||
|
|
||
|
void listSMS(HTTPServerRequest req, HTTPServerResponse res) {
|
||
|
auto jsr = req.json;
|
||
|
res.writeJsonBody(sqlGetListSMS(jsr["to"].get!string).serializeToJson());
|
||
|
}
|