mirror of
https://github.com/zulip/zulip.git
synced 2025-11-06 23:13:25 +00:00
The flag has been set to true for a while, so we removed the flag and a bit of dead code associated with it. This change should not affect any functionality on any realm. (imported from commit 8d457f52584173994d0e5e83ca326f892cd90057)
13 lines
393 B
JavaScript
13 lines
393 B
JavaScript
var feature_flags = (function () {
|
|
|
|
var exports = {};
|
|
|
|
exports.mark_read_at_bottom = page_params.staging;
|
|
exports.summarize_read_while_narrowed = page_params.staging;
|
|
exports.twenty_four_hour_time = _.contains([],
|
|
page_params.email);
|
|
exports.dropbox_integration = page_params.staging || _.contains(['dropbox.com'], page_params.domain);
|
|
return exports;
|
|
|
|
}());
|