mirror of
https://github.com/zulip/zulip.git
synced 2025-11-05 06:23:38 +00:00
With this flag turned on, all streams will have a "more topics" link, and clicking that link will always fetch topics from the server to show a complete list of topics that you have had messages for on that stream. Note that if you only recently joined a public stream, your list of topics won't go back to before you joined the stream, even though that content is searchable. We may change that in the future, but we will need to be careful about spamming folks who frequently unsubscribe from streams.
25 lines
590 B
JavaScript
25 lines
590 B
JavaScript
var feature_flags = (function () {
|
|
|
|
var exports = {};
|
|
|
|
// Experimental modification to support much wider message views.
|
|
exports.full_width = false;
|
|
|
|
// The features below have all settled into their final states and can
|
|
// be removed when we get a chance
|
|
exports.mark_read_at_bottom = true;
|
|
exports.propagate_topic_edits = true;
|
|
exports.clicking_notification_causes_narrow = true;
|
|
exports.collapsible = false;
|
|
exports.dropbox_integration = false;
|
|
|
|
exports.use_server_topic_history = true;
|
|
|
|
return exports;
|
|
|
|
}());
|
|
|
|
if (typeof module !== 'undefined') {
|
|
module.exports = feature_flags;
|
|
}
|