mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-11 08:25:46 +01:00
* feat: new routes for flags API + flag get + flag creation, migration from socket method + flag update, migration from socket method * fixed bug where you could not unassign someone from a flag * feat: tests for new flags API added missing files for schema update * fix: flag tests to use Write API instead of sockets * feat: flag notes API + tests * chore: remove debug line * test: fix breaking test on mongo
11 lines
219 B
JavaScript
11 lines
219 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
users: require('./users'),
|
|
groups: require('./groups'),
|
|
topics: require('./topics'),
|
|
posts: require('./posts'),
|
|
categories: require('./categories'),
|
|
flags: require('./flags'),
|
|
};
|