mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-02 08:13:34 +03:00
14e05a6f0f
fixes https://github.com/TryGhost/Team/issues/3470 - When members are disabled or invite only, the signup form embed should be disabled - The comments access setting is now also disabled if members are disabled - The tiers menus are now also disabled if members are disabled
27 lines
1.0 KiB
Handlebars
27 lines
1.0 KiB
Handlebars
<div class="gh-setting-richdd-container comment-access-dropdown" data-test-members-comments-access>
|
|
<div class="gh-expandable-header">
|
|
<div>
|
|
<h4 class="gh-expandable-title">Commenting</h4>
|
|
<p class="gh-expandable-description">Who can comment on posts?</p>
|
|
</div>
|
|
</div>
|
|
|
|
<PowerSelect
|
|
@options={{this.options}}
|
|
@selected={{this.selectedOption}}
|
|
@onChange={{this.setCommentAccess}}
|
|
@disabled={{eq this.settings.membersSignupAccess "none"}}
|
|
@triggerClass="gh-setting-dropdown"
|
|
@dropdownClass="gh-setting-dropdown-list"
|
|
as |option|
|
|
>
|
|
<div class="gh-setting-dropdown-content" data-test-members-comments-access-option={{option.value}}>
|
|
{{svg-jar option.icon class=(concat "w8 h8 mr2 fill-" (or option.icon_color "green"))}}
|
|
<div class="gh-radio-label">
|
|
{{option.name}}<br>
|
|
<div class="gh-radio-desc">{{option.description}}</div>
|
|
</div>
|
|
</div>
|
|
</PowerSelect>
|
|
</div>
|