~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to ivle/database.py

  • Committer: Matt Giuca
  • Date: 2010-02-12 02:06:46 UTC
  • Revision ID: matt.giuca@gmail.com-20100212020646-2jd7uig1z5vmpqfd
Policy decision: Tutors no longer have access to the enrolment page. This disallows them from enrolling students in subjects they teach. (Moved 'enrol' and 'enrol_student' to lecturer/admin-only privilege). This fixes Launchpad Bug #493945.

Show diffs side-by-side

added added

removed removed

Lines of Context:
380
380
            if (enrolment and enrolment.role in (u'tutor', u'lecturer')) \
381
381
               or user.admin:
382
382
                perms.add('edit')
383
 
                # XXX Bug #493945 -- should tutors have these permissions?
384
 
                # Potentially move into the next category (lecturer & admin)
 
383
            if (enrolment and enrolment.role in (u'lecturer')) or user.admin:
385
384
                perms.add('enrol')          # Can see enrolment screen at all
386
385
                perms.add('enrol_student')  # Can enrol students
387
 
            if (enrolment and enrolment.role in (u'lecturer')) or user.admin:
388
386
                perms.add('enrol_tutor')    # Can enrol tutors
389
387
            if user.admin:
390
388
                perms.add('enrol_lecturer') # Can enrol lecturers