84 | | * Developer can put in additional manual restrictions or alternate routes, as-required |
| 84 | * We can have a 'sudo' mechanism where users (maybe restricted to a certain role) get temporary access to other roles' rights (e.g. admin) within the Controller function's confines: |
| 85 | {{{ |
| 86 | def myfunction: |
| 87 | " This function (or section within a function) requires us to temporarily give admin rights to the user " |
| 88 | ... |
| 89 | session.s3.roles.append(1) |
| 90 | ... |
| 91 | }}} |
| 92 | * Developer can put in any additional manual restrictions or alternate routes, as-required |