I need to change the text of a menu dynamically base on the result of a backend request.
Any idea? Thanks
That makes sense. Thank you
I have the appservice 1 that need permission A, that needs to call the appservice 2 that needs permission B. User calling appservice 1 has permission A, but not B :
appservice1.doit(){
var ret = appservice2.dothat(); <- Need permission B
}
Hello,
I have the need to get all the users that has a given permission (userappservice , need Pages_Administration_Users permission), from a method that doesn't need this permission ).
Is there anyway to override the permissions of a given method?
Thanks
Great! Thanks.
Hello,
I need to check a patch in my code :
https://github.com/aspnetzero/aspnet-zero-core/pull/3150
But I get a 404 when accessing the link, I guess that this is because I cannot access the repo. How can I get a user?
Thanks
Hi @ismcagdas,
EvoPdf offers some ways of authentication, but not with token. I've made it by creating creating routes without guard in the angular application, an protecting them with a single use token, included in the url to print by the pdf engine.
Thanks
Thanks, not sure if this solves my problem.
I don't need to access a controller anonymously, but be able to access a view of the application without beign authenticated. I mean, the pdf printer engine need as a parameter the url of the page to be printed, and because this is a background process I cannot authenticate it.
Hello,
We're using EVOPdf library to print html to pdf.
As EvoPDF can't run in Azure in the app itself, it has to run in a separated worker. The problem is that I've to print a page inside the aspnetzero app where the user has to be authenticated.
Could I somehow take the current access token and set it to the request made by the pdf engine.? If not, I'm thinking of creating a single use token to pass to the url, so the authentication is skipped, but seems a bit tricky.
On the other hand, can I have some public pages inside the authenticated app?
Any idea? Thanks