mirror of
https://github.com/Relintai/mourne_rcpp_fw.git
synced 2025-01-13 07:41:12 +01:00
43 lines
960 B
C++
43 lines
960 B
C++
#include "ai_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 AINode::handle_request_default(Request *request) {
|
|
}
|
|
|
|
void AINode::admin_handle_request_main(Request *request) {
|
|
request->send_error(404);
|
|
}
|
|
String AINode::admin_get_section_name() {
|
|
return "News";
|
|
}
|
|
void AINode::admin_add_section_links(Vector<AdminSectionLinkInfo> *links) {
|
|
links->push_back(AdminSectionLinkInfo("- News Editor", ""));
|
|
}
|
|
bool AINode::admin_full_render() {
|
|
return false;
|
|
}
|
|
|
|
AINode::AINode() :
|
|
AdminNode() {
|
|
}
|
|
|
|
AINode::~AINode() {
|
|
}
|