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:
sahil839
2020-07-25 21:50:54 +05:30
committed by Tim Abbott
parent 08701d0287
commit ed96758614
2 changed files with 5 additions and 0 deletions

View File

@@ -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 {