mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 05:53:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			476 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			476 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
var feature_flags = (function () {
 | 
						|
 | 
						|
var exports = {};
 | 
						|
 | 
						|
exports.load_server_counts = false;
 | 
						|
 | 
						|
// The features below have all settled into their final states and can
 | 
						|
// be removed when we get a chance
 | 
						|
exports.propagate_topic_edits = true;
 | 
						|
exports.clicking_notification_causes_narrow = true;
 | 
						|
exports.reminders_in_message_action_menu = false;
 | 
						|
 | 
						|
return exports;
 | 
						|
 | 
						|
}());
 | 
						|
 | 
						|
if (typeof module !== 'undefined') {
 | 
						|
    module.exports = feature_flags;
 | 
						|
}
 | 
						|
window.feature_flags = feature_flags;
 |