mirror of
https://github.com/Relintai/mourne_rcpp_fw.git
synced 2024-11-13 05:57:21 +01:00
43 lines
1.0 KiB
C++
43 lines
1.0 KiB
C++
#include "changelog_node.h"
|
|
|
|
#include "web/html/form_validator.h"
|
|
#include "web/html/html_builder.h"
|
|
#include "web/http/cookie.h"
|
|
#include "web/http/http_enums.h"
|
|
#include "web/http/http_session.h"
|
|
#include "web/http/request.h"
|
|
#include "web/http/session_manager.h"
|
|
|
|
#include "../html_macros.h"
|
|
|
|
#include "database/database.h"
|
|
#include "database/database_manager.h"
|
|
#include "database/query_builder.h"
|
|
#include "database/query_result.h"
|
|
#include "database/table_builder.h"
|
|
|
|
#include "crypto/hash/sha256.h"
|
|
|
|
void ChangelogNode::handle_request_default(Request *request) {
|
|
}
|
|
|
|
void ChangelogNode::admin_handle_request_main(Request *request) {
|
|
request->send_error(404);
|
|
}
|
|
String ChangelogNode::admin_get_section_name() {
|
|
return "Changelog";
|
|
}
|
|
void ChangelogNode::admin_add_section_links(Vector<AdminSectionLinkInfo> *links) {
|
|
links->push_back(AdminSectionLinkInfo("- Changelog Editor", ""));
|
|
}
|
|
bool ChangelogNode::admin_full_render() {
|
|
return false;
|
|
}
|
|
|
|
ChangelogNode::ChangelogNode() :
|
|
AdminNode() {
|
|
}
|
|
|
|
ChangelogNode::~ChangelogNode() {
|
|
}
|