Merge pull request #4571 from cpradio/hide-about-me-suspended
FEATURE: Hide Profile Text from non-staff if user is suspended
This commit is contained in:
commit
ecebc58780
|
@ -25,6 +25,11 @@ export default Ember.Controller.extend(CanCheckEmails, {
|
||||||
return (!indexStream || viewingSelf) && !forceExpand;
|
return (!indexStream || viewingSelf) && !forceExpand;
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@computed('model.isSuspended', 'currentUser.staff')
|
||||||
|
isNotSuspendedOrIsStaff(isSuspended, isStaff) {
|
||||||
|
return !isSuspended || isStaff;
|
||||||
|
},
|
||||||
|
|
||||||
linkWebsite: Em.computed.not('model.isBasic'),
|
linkWebsite: Em.computed.not('model.isBasic'),
|
||||||
|
|
||||||
@computed("model.trust_level")
|
@computed("model.trust_level")
|
||||||
|
|
|
@ -86,7 +86,9 @@
|
||||||
<b>{{i18n 'user.suspended_reason'}}</b> {{model.suspend_reason}}
|
<b>{{i18n 'user.suspended_reason'}}</b> {{model.suspend_reason}}
|
||||||
</div>
|
</div>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{{model.bio_cooked}}}
|
{{#if isNotSuspendedOrIsStaff}}
|
||||||
|
{{{model.bio_cooked}}}
|
||||||
|
{{/if}}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{{#if publicUserFields}}
|
{{#if publicUserFields}}
|
||||||
|
|
Loading…
Reference in New Issue