FIX: staff notes button should only be visible to staff
This commit is contained in:
parent
4c14cc59f0
commit
550d5c73f4
|
@ -6,7 +6,8 @@ export default {
|
||||||
name: 'enable-staff-notes',
|
name: 'enable-staff-notes',
|
||||||
initialize(container) {
|
initialize(container) {
|
||||||
const siteSettings = container.lookup('site-settings:main');
|
const siteSettings = container.lookup('site-settings:main');
|
||||||
if (!siteSettings.staff_notes_enabled) { return; }
|
const currentUser = container.lookup('current-user:main');
|
||||||
|
if (!siteSettings.staff_notes_enabled || !currentUser || !currentUser.staff) { return; }
|
||||||
|
|
||||||
const store = container.lookup('store:main');
|
const store = container.lookup('store:main');
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue