mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-24 23:48:13 -05:00
Renamed post visiblity dropdown values for posts
no issue
This commit is contained in:
parent
d81b39e355
commit
523b8e856f
2 changed files with 4 additions and 4 deletions
|
@ -3,9 +3,9 @@ import {computed} from '@ember/object';
|
||||||
import {inject as service} from '@ember/service';
|
import {inject as service} from '@ember/service';
|
||||||
|
|
||||||
const VISIBILITIES = [
|
const VISIBILITIES = [
|
||||||
{label: 'Everyone', name: 'public'},
|
{label: 'Public', name: 'public'},
|
||||||
{label: 'Free and paying members', name: 'members'},
|
{label: 'Members only', name: 'members'},
|
||||||
{label: 'Only paying members', name: 'paid'}
|
{label: 'Paid-members only', name: 'paid'}
|
||||||
];
|
];
|
||||||
|
|
||||||
export default Component.extend({
|
export default Component.extend({
|
||||||
|
|
|
@ -79,7 +79,7 @@
|
||||||
{{#if feature.members}}
|
{{#if feature.members}}
|
||||||
{{#unless session.user.isContributor}}
|
{{#unless session.user.isContributor}}
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label for="visibility-input">Who can see this post</label>
|
<label for="visibility-input">Post access</label>
|
||||||
{{gh-psm-visibility-input post=post triggerId="visibility-input"}}
|
{{gh-psm-visibility-input post=post triggerId="visibility-input"}}
|
||||||
</div>
|
</div>
|
||||||
{{/unless}}
|
{{/unless}}
|
||||||
|
|
Loading…
Add table
Reference in a new issue