This repository has been archived on 2025-02-26. You can view files and clone it, but cannot push or open issues or pull requests.
szurubooru/static/js/controllers/history_controller.js

14 lines
276 B
JavaScript
Raw Normal View History

'use strict';
class HistoryController {
constructor(topNavigationController) {
this.topNavigationController = topNavigationController;
}
listHistoryRoute() {
this.topNavigationController.activate('');
}
}
module.exports = HistoryController;