CC-3695: Non-admin user cannot preview the contents

- guest doesn't have access to playlist builder, hence allowing DJ, PM and
admin to access the preview.
This commit is contained in:
James 2012-04-24 15:57:43 -04:00
parent 3c4d01aa93
commit 5be12c0a93
1 changed files with 7 additions and 6 deletions

View File

@ -37,12 +37,13 @@ $ccAcl->allow('G', 'index')
->allow('H', 'usersettings')
->allow('H', 'plupload')
->allow('H', 'library')
->allow('H', 'playlist')
->allow('A', 'playouthistory')
->allow('A', 'user')
->allow('A', 'systemstatus')
->allow('A', 'preference')
->allow('A', 'audiopreview');
->allow('H', 'playlist')
->allow('H', 'audiopreview')
->allow('A', 'playouthistory')
->allow('A', 'user')
->allow('A', 'systemstatus')
->allow('A', 'preference');
$aclPlugin = new Zend_Controller_Plugin_Acl($ccAcl);