2023-05-30 23:04:03 +00:00
|
|
|
module requests.listsgroups;
|
|
|
|
|
|
|
|
import vibe.vibe;
|
|
|
|
import response;
|
|
|
|
import data;
|
|
|
|
|
2023-05-31 22:10:08 +00:00
|
|
|
void listsGroups(HTTPServerRequest req, HTTPServerResponse res) {
|
2023-06-01 21:36:21 +00:00
|
|
|
auto listGroups = sqlGetListGroups();
|
2023-05-31 14:48:05 +00:00
|
|
|
render!("group-numbers-list.dt", listGroups)(res);
|
2023-05-30 23:04:03 +00:00
|
|
|
}
|