Changeset 9276


Ignore:
Timestamp:
2 Oct 2012, 17:13:22 (12 years ago)
Author:
Henrik Bettermann
Message:

CRPUOfficer now inherits from CCOfficer.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.aaue/trunk/src/waeup/aaue/permissions.py

    r8444 r9276  
    1717##
    1818import grok
     19from waeup.kofa.permissions import CCOfficer
    1920
    2021
    21 class CRPUOfficer(grok.Role):
     22class CRPUOfficer(CCOfficer):
    2223    """ Permissions of AAUE staff.
    2324
     25    This is basically a copy of the the PortalManager. We exclude some
     26    permissions by commenting them out.
    2427    """
    2528
    2629    grok.name('waeup.CRPUOfficer')
    2730    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.