- Timestamp:
- 2 Oct 2012, 17:11:02 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.fceokene/trunk/src/waeup/fceokene/permissions.py
r8460 r9275 17 17 ## 18 18 import grok 19 from waeup.kofa.permissions import CCOfficer 19 20 20 21 21 class CRPUOfficer( grok.Role):22 class CRPUOfficer(CCOfficer): 22 23 """ Permissions of FCEOkene staff. 23 24 25 This is basically a copy of the the PortalManager. We exclude some 26 permissions by commenting them out. 24 27 """ 25 28 26 grok.name('waeup. FCEOkeneOfficer')29 grok.name('waeup.CRPUOfficer') 27 30 grok.title(u'FCEOkene Officer') 28 grok.permissions('waeup.managePortal', 'waeup.manageUsers',29 'waeup.viewAcademics', 'waeup.manageAcademics',30 'waeup.manageACBatches',31 'waeup.manageDataCenter',32 'waeup.managePortalConfiguration', 'waeup.viewApplication',33 'waeup.manageApplication', 'waeup.handleApplication',34 'waeup.viewApplicantsTab', 'waeup.payApplicant',35 'waeup.viewStudent', 'waeup.manageStudent',36 'waeup.clearStudent', 'waeup.payStudent',37 'waeup.uploadStudentFile', 'waeup.showStudents',38 'waeup.viewStudentsContainer','waeup.viewStudentsTab',39 'waeup.viewHostels', 'waeup.manageHostels',40 'waeup.editUser'41 )
Note: See TracChangeset for help on using the changeset viewer.