mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-06-19 23:50:49 +02:00
15 lines
406 B
JavaScript
15 lines
406 B
JavaScript
'use strict';
|
|
|
|
var accountsController = {
|
|
profile: require('./accounts/profile'),
|
|
edit: require('./accounts/edit'),
|
|
settings: require('./accounts/settings'),
|
|
groups: require('./accounts/groups'),
|
|
follow: require('./accounts/follow'),
|
|
posts: require('./accounts/posts'),
|
|
notifications: require('./accounts/notifications'),
|
|
chats: require('./accounts/chats')
|
|
};
|
|
|
|
module.exports = accountsController;
|