Files
zulip/web/templates/settings/bot_settings_tip.hbs
Maneesh Shukla deaa6390a8 banners: Redesign the permission banners.
Fixes part of #34252.
2025-08-01 09:08:30 -07:00

16 lines
490 B
Handlebars

{{#unless can_create_any_bots}}
{{#if can_create_incoming_webhooks}}
{{> ../components/banner
label=(t "You can create bots that can only send messages.")
intent="info"
custom_classes="admin-permissions-banner"
}}
{{else}}
{{> ../components/banner
label=(t "You do not have permission to create bots.")
intent="info"
custom_classes="admin-permissions-banner"
}}
{{/if}}
{{/unless}}