diff options
Diffstat (limited to 'bot/src/schemas/channel.hpp')
| -rw-r--r-- | bot/src/schemas/channel.hpp | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/bot/src/schemas/channel.hpp b/bot/src/schemas/channel.hpp index a8979ec..c2ac5e2 100644 --- a/bot/src/schemas/channel.hpp +++ b/bot/src/schemas/channel.hpp @@ -50,9 +50,13 @@ namespace bot::schemas { std::optional<std::chrono::system_clock::time_point> opted_out_at; }; - enum ChannelFeature { MARKOV_RESPONSES, RANDOM_MARKOV_RESPONSES }; - const std::vector<ChannelFeature> FEATURES = {MARKOV_RESPONSES, - RANDOM_MARKOV_RESPONSES}; + enum ChannelFeature { + MARKOV_RESPONSES, + RANDOM_MARKOV_RESPONSES, + SILENT_MODE + }; + const std::vector<ChannelFeature> FEATURES = { + MARKOV_RESPONSES, RANDOM_MARKOV_RESPONSES, SILENT_MODE}; std::optional<ChannelFeature> string_to_channel_feature( const std::string &value); std::optional<std::string> channelfeature_to_string( |
