mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 05:53:43 +00:00 
			
		
		
		
	stream_data: Add subscribed_stream_ids function.
We add a function subscribed_stream_ids which returns an array of stream ids of all subscribed streams. This is a prep commit for changing the logic for sorting streams to store stream ids instead of names.
This commit is contained in:
		@@ -366,6 +366,10 @@ exports.subscribed_streams = function () {
 | 
			
		||||
    return exports.subscribed_subs().map((sub) => sub.name);
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
exports.subscribed_stream_ids = function () {
 | 
			
		||||
    return exports.subscribed_subs().map((sub) => sub.stream_id);
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
exports.get_invite_stream_data = function () {
 | 
			
		||||
    function get_data(sub) {
 | 
			
		||||
        return {
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user