Changes between Version 78 and Version 79 of BluePrintAuthorization


Ignore:
Timestamp:
06/21/10 14:58:30 (14 years ago)
Author:
Fran Boon
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BluePrintAuthorization

    v78 v79  
    8282    ...
    8383}}}
    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{{{
     86def 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
    8593
    8694=== Resource restriction ===