2016-03-19 20:37:04 +00:00
|
|
|
'use strict';
|
|
|
|
|
2016-03-31 22:20:34 +00:00
|
|
|
const topNavController = require('../controllers/top_nav_controller.js');
|
2016-03-19 20:37:04 +00:00
|
|
|
|
2016-03-31 22:20:34 +00:00
|
|
|
class CommentsController {
|
2016-03-19 20:37:04 +00:00
|
|
|
listCommentsRoute() {
|
2016-03-31 22:20:34 +00:00
|
|
|
topNavController.activate('comments');
|
2016-03-19 20:37:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-31 22:20:34 +00:00
|
|
|
module.exports = new CommentsController();
|