/
aychuikov
/
ProfessionalJuniorAppForTest
Обзор
Документация
Войти
/
aychuikov
/
ProfessionalJuniorAppForTest
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
src/controllers/contest.controller.js
13 строк
339 B
Tank4444
first_commit
05 фев 2026, 04:20
05 фев 2026, 04:20
37e50d6
Код
Авторство
О чём код?
// Notifications removed // Leaderboard const getLeaderboard = async (req, res) => { try { const result = await contestService.getLeaderboard(req.user?.id || null, req.query.limit, req.query.offset); successResponse(res, result); } catch (e) { errorResponse(res, e); } }; module.exports = { getLeaderboard };