21 lines
358 B
JavaScript
21 lines
358 B
JavaScript
const BasePage = require('./BasePage');
|
|
|
|
class AuthorPage extends BasePage {
|
|
constructor(config) {
|
|
super(config);
|
|
|
|
this.id = 'author';
|
|
this.title = 'Авторы';
|
|
}
|
|
|
|
async body() {
|
|
const result = {};
|
|
|
|
result.entry = [
|
|
];
|
|
|
|
return this.makeBody(result);
|
|
}
|
|
}
|
|
|
|
module.exports = AuthorPage; |