Create: Backend branch

This commit is contained in:
Yûki VACHOT 2021-12-22 11:09:20 +01:00
parent f91febf919
commit 76ac0c292c
260 changed files with 10 additions and 12964 deletions

View file

@ -0,0 +1,7 @@
const {sendMessage} = require ("../config/response.config");
const interests = require("../models/objects/video.categories.model");
// Get all interests available
exports.getInterests = (req, res) => {
return sendMessage(res, 51, interests, null)
};