client/users: add basic users listing

This commit is contained in:
rr-
2016-04-10 22:13:01 +02:00
parent bb3f280c7f
commit d6daf84da0
11 changed files with 274 additions and 6 deletions

View File

@ -0,0 +1,16 @@
'use strict';
const api = require('../api.js');
const ManualPageView = require('../views/manual_page_view.js');
class PageController {
constructor() {
this.pageView = new ManualPageView();
}
run(ctx) {
this.pageView.render(ctx);
}
}
module.exports = new PageController();