mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
FEATURE: Add new group visibility option for "logged on users" (#7814)
Groups can now be marked as visible to "logged on users". All automatic groups (except `everyone`) are now visible to "logged on users", previously they were marked as public but suppressed in the group page for non-staff.
This commit is contained in:
@@ -13,19 +13,25 @@ export default Ember.Component.extend({
|
||||
},
|
||||
{
|
||||
name: I18n.t(
|
||||
"admin.groups.manage.interaction.visibility_levels.members"
|
||||
"admin.groups.manage.interaction.visibility_levels.logged_on_users"
|
||||
),
|
||||
value: 1
|
||||
},
|
||||
{
|
||||
name: I18n.t("admin.groups.manage.interaction.visibility_levels.staff"),
|
||||
name: I18n.t(
|
||||
"admin.groups.manage.interaction.visibility_levels.members"
|
||||
),
|
||||
value: 2
|
||||
},
|
||||
{
|
||||
name: I18n.t("admin.groups.manage.interaction.visibility_levels.staff"),
|
||||
value: 3
|
||||
},
|
||||
{
|
||||
name: I18n.t(
|
||||
"admin.groups.manage.interaction.visibility_levels.owners"
|
||||
),
|
||||
value: 3
|
||||
value: 4
|
||||
}
|
||||
];
|
||||
|
||||
|
||||
@@ -9,6 +9,10 @@
|
||||
content=visibilityLevelOptions
|
||||
castInteger=true
|
||||
class="groups-form-visibility-level"}}
|
||||
|
||||
<div class="control-instructions">
|
||||
{{i18n 'admin.groups.manage.interaction.visibility_levels.description'}}
|
||||
</div>
|
||||
</div>
|
||||
{{/if}}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user