Files
zulip/web/templates/confirm_dialog/confirm_unsubscribe_private_stream.hbs
Sahil Batra d3c06234e2 streams: Fix warning shown when unsubscribing from private stream.
We no longer archive the stream when private stream becomes
vacant, so removed that part from the warning.

When a private stream becomes vacant, everyone in the organization
can lose content access to it if no one has permission to subscribe
themselves or others to the stream. So, the warning is updated to
mention this.
2025-04-14 09:24:53 -07:00

9 lines
334 B
Handlebars

{{#unless unsubscribing_other_user}}
<p>{{t "Once you leave this channel, you will not be able to rejoin."}}</p>
{{/unless}}
{{#if organization_will_lose_content_access}}
<p>
{{t "Your organization will lose access content in this channel, and nobody will be able to subscribe to it in the future."}}
</p>
{{/if}}