Changeset 17610 for main/waeup.kofa
- Timestamp:
- 12 Oct 2023, 09:06:25 (13 months ago)
- Location:
- main/waeup.kofa/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/CHANGES.txt
r17528 r17610 4 4 1.8.2.dev0 (unreleased) 5 5 ======================= 6 7 * Add logging messages before after creating students from applicants. 6 8 7 9 * Allow user 'admin' to access the portal in maintenance mode. -
main/waeup.kofa/trunk/src/waeup/kofa/students/permissions.py
r16170 r17610 52 52 53 53 class HandleAccommodation(grok.Permission): 54 """The HandleAccommodation allows to manage bed tickets.54 """The HandleAccommodation permission allows to manage bed tickets. 55 55 """ 56 56 grok.name('waeup.handleAccommodation') … … 88 88 89 89 class LoginAsStudent(grok.Permission): 90 """The LoginAsStudent is needed to set temporary student passwords91 and login as (impersonate) students.90 """The LoginAsStudent permission is needed to set temporary student 91 passwords and login as (impersonate) students. 92 92 """ 93 93 grok.name('waeup.loginAsStudent') 94 94 95 95 class ViewTranscript(grok.Permission): 96 """The ViewTranscript roleis needed to view transcript pages.96 """The ViewTranscript permission is needed to view transcript pages. 97 97 """ 98 98 grok.name('waeup.viewTranscript') 99 99 100 100 class DownloadTranscript(grok.Permission): 101 """The DownloadTranscript roleis needed to download transcript slips.101 """The DownloadTranscript permission is needed to download transcript slips. 102 102 """ 103 103 grok.name('waeup.downloadTranscript') … … 105 105 class ProcessTranscript(grok.Permission): 106 106 grok.name('waeup.processTranscript') 107 """The ProcessTranscript roleis needed to validate and relase transcripts.107 """The ProcessTranscript permission is needed to validate and relase transcripts. 108 108 """ 109 109 110 110 class SignTranscript(grok.Permission): 111 111 grok.name('waeup.signTranscript') 112 """The SignTranscript roleis needed to sign transcripts.112 """The SignTranscript permission is needed to sign transcripts. 113 113 """ 114 114
Note: See TracChangeset for help on using the changeset viewer.