//////////////////////////////////////////////////////////////////////// FAQ DB specific functions.
| 884 | ///////////////////////////////////////////////////////////////////////////// |
| 885 | // FAQ DB specific functions. |
| 886 | vector<string> getAllFAQKeys() |
| 887 | { |
| 888 | if (!FAQDB.get()) |
| 889 | { |
| 890 | vector<string> empty; |
| 891 | return empty; |
| 892 | } |
| 893 | |
| 894 | return _database_find_keys(FAQDB.get(), "^q.+", false); |
| 895 | } |
| 896 | |
| 897 | string getFAQ_Question(const string &key) |
| 898 | { |
no test coverage detected