AuthorPage.js 358 B

123456789101112131415161718192021
  1. const BasePage = require('./BasePage');
  2. class AuthorPage extends BasePage {
  3. constructor(config) {
  4. super(config);
  5. this.id = 'author';
  6. this.title = 'Авторы';
  7. }
  8. async body() {
  9. const result = {};
  10. result.entry = [
  11. ];
  12. return this.makeBody(result);
  13. }
  14. }
  15. module.exports = AuthorPage;