Steve Schwarz
Steve Schwarz
@blex18 I think the question is relevant to the OP's question. When using AD for authentication, they use a multi-step login wizard and there don't appear to be any endpoints...
I found this project which uses puppeteer to login to AD and then AWS: https://github.com/dtjohnson/aws-azure-login I'm going to look at it next week, cut out the AWS code and write...
So I bailed on that other project and found @pieterdv had an excellent solution. I only had to change from `localStorage` to `sessionStorage`. I put some wrapper code around his...
@calvinballing Unfortunately, the approaches described in the Cypress best practices documentation/YT videos don't appear to be applicable to the Azure AD login process. Azure AD doesn't seem to have an...
Thanks @GaramNick for your snippet! I ended up putting your idea into a subclass and had to adjust the `super()` call to `has_permission(request)` so the default admin version would be...
I found adding this to `global.scss` made buttons clickable through the joyride background on desktop Chrome/Safari and iOS Safari: ``` .backdrop-container { pointer-events: none !important; } ```
@mazlanmohdnor it works with the `slice(0)` because Angular change detection doesn't look inside objects (an Array in this case) to detect they changed. Angular looks to see if the object...
I'm sorry I wasn't clear. Using transformers is a flexible approach. As someone new to this plugin/Algolia this was a problem I encountered. So I thought it would be helpful...
I have an experimental branch that seems to be working: https://github.com/saschwarz/django-pyodbc-azure/commit/a1df832529831c2045f8d0cd8bbd938376d393df I created a new field type that acts like an `AutoField` and generates a `uniqueidentifier` db column that uses...
I'm completely new to SimpleCV but playing with the examples in Chapter 2 I found this related issue: pressing ESC returns from the function but doesn't take down the display...