summaryrefslogtreecommitdiff
path: root/src/master_content.hpp
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2015-05-03 10:15:39 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2015-05-03 10:15:39 +0200
commit399cea0f02b46d2253e5d8aa2a67e8f30271c23b (patch)
tree280c90d1aababcddeeff85750f5af4ce0e71fff8 /src/master_content.hpp
parent6f7801f0c01b1b62a6b70dd2572d96cc82ff69b7 (diff)
downloadaCms-399cea0f02b46d2253e5d8aa2a67e8f30271c23b.tar.gz
aCms-399cea0f02b46d2253e5d8aa2a67e8f30271c23b.tar.bz2
fixed hard coded app links
Diffstat (limited to 'src/master_content.hpp')
-rw-r--r--src/master_content.hpp8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/master_content.hpp b/src/master_content.hpp
index f1cd222..451ee7d 100644
--- a/src/master_content.hpp
+++ b/src/master_content.hpp
@@ -20,19 +20,15 @@ struct master : public cppcms::base_content {
std::string logout_link;
std::string register_link;
std::string username;
+ std::string _root;
public:
master( ) : cppcms::base_content( )
{
- // TODO: ini
- //~ c.login_link=wi.users.login_url();
- login_link = "/strusCms/login";
- logout_link = "/strusCms/logout";
- register_link = "/strusCms/register";
}
std::string root( ) {
- return "/strusCms";
+ return _root;
}
};