Changeset 9276 for main/waeup.aaue/trunk/src
- Timestamp:
- 2 Oct 2012, 17:13:22 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.aaue/trunk/src/waeup/aaue/permissions.py
r8444 r9276 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 AAUE 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 29 grok.name('waeup.CRPUOfficer') 27 30 grok.title(u'AAUE 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.