I use 'request.has_permission' to determine which menu links and editing buttons to show.
On Wed, Feb 20, 2019 at 9:36 AM Michael Merickel <[email protected]> wrote: > > Just to expand on Theron's suggestion a bit more: there is not a general > solution to the problem because Pyramid's routing system is flexible enough > that it's not easy to tell which view will be invoked for a particular > request without actually executing the request. If you know what permission > the user will need and what context the user will have then you can use > request.has_permission(permission, context=context). If this isn't > satisfactory then you'll have to come up with something outside of the > per-request security system Pyramid provides to know what the user "could" > have access to. > > - Michael > > On Wed, Feb 20, 2019 at 10:48 AM Theron Luhn <[email protected]> wrote: >> >> Check out request.has_permission: >> https://docs.pylonsproject.org/projects/pyramid/en/latest/api/request.html#pyramid.request.Request.has_permission >> >> — Theron >> >> >> >> On Feb 20, 2019, at 3:10 AM, Thijs <[email protected]> wrote: >> >> In a view I want to return a few hyperlinks to other views. However, I don't >> want to present users with links to views they have no permission for. Is >> there any way to check if a user has access to a certain view so I can omit >> the links to denied views? >> >> -- >> You received this message because you are subscribed to the Google Groups >> "pylons-discuss" group. >> To unsubscribe from this group and stop receiving emails from it, send an >> email to [email protected]. >> To post to this group, send email to [email protected]. >> To view this discussion on the web visit >> https://groups.google.com/d/msgid/pylons-discuss/f422ce38-287d-4b53-b95e-5c114ed8e65a%40googlegroups.com. >> For more options, visit https://groups.google.com/d/optout. >> >> >> -- >> You received this message because you are subscribed to the Google Groups >> "pylons-discuss" group. >> To unsubscribe from this group and stop receiving emails from it, send an >> email to [email protected]. >> To post to this group, send email to [email protected]. >> To view this discussion on the web visit >> https://groups.google.com/d/msgid/pylons-discuss/50EEE623-4776-4E00-A8AA-6E6613C2E2E5%40luhn.com. >> For more options, visit https://groups.google.com/d/optout. > > -- > You received this message because you are subscribed to the Google Groups > "pylons-discuss" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > To view this discussion on the web visit > https://groups.google.com/d/msgid/pylons-discuss/CAKdhhwHFsZ%2BZtfSZnster0T-g00rqMyeCQ1qMPGTxH%2Bp2njAZw%40mail.gmail.com. > For more options, visit https://groups.google.com/d/optout. -- Mike Orr <[email protected]> -- You received this message because you are subscribed to the Google Groups "pylons-discuss" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/pylons-discuss/CAH9f%3DupaF2tKJ4L_r0QRvYxCmw4uVO4yzy8WBf-Nf-GOe496cg%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
