mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-01-03 22:30:58 +01:00
* feat: tag follow * on tag delete remove it from following users * feat: on tag rename update user followed tags and move the * add new filter on /notifications * feat: openapi updates * chore: up themes * chore: up peace * refactor: remove unused title
22 lines
690 B
JavaScript
22 lines
690 B
JavaScript
'use strict';
|
|
|
|
const accountsController = {
|
|
profile: require('./accounts/profile'),
|
|
edit: require('./accounts/edit'),
|
|
info: require('./accounts/info'),
|
|
categories: require('./accounts/categories'),
|
|
tags: require('./accounts/tags'),
|
|
settings: require('./accounts/settings'),
|
|
groups: require('./accounts/groups'),
|
|
follow: require('./accounts/follow'),
|
|
posts: require('./accounts/posts'),
|
|
notifications: require('./accounts/notifications'),
|
|
chats: require('./accounts/chats'),
|
|
sessions: require('./accounts/sessions'),
|
|
blocks: require('./accounts/blocks'),
|
|
uploads: require('./accounts/uploads'),
|
|
consent: require('./accounts/consent'),
|
|
};
|
|
|
|
module.exports = accountsController;
|