Steven Molen

Results 12 comments of Steven Molen

This is for directories AND files. Luckily I'm generating my own files but I could see how this would be a deal breaker if I had a bunch of pre-existing...

We are interested in this as well and would love to discuss what it would take to fast-track this task.

I got past this doing a number of steps: Found [this article on stackoverflow](https://github.com/AzureAD/microsoft-identity-web/issues/115) that clued me in on what was going on. Went through the sts code and found...

New problem though: ``` warn: Microsoft.AspNetCore.Http.ResponseCookies[1] The cookie '.AspNetCore.OpenIdConnect.Nonce.CfDJ8Ev4r73UydVDoDKIdodzhZzaMQzXuSYN7LxmRWFmWKzvUqeBmkeCYmynh32jRw-9I8ZKzBJm4WahAP-jDHPFnBCHyubvXjzpyix1yujzklhOR3dTiH9N_euhDD1GeyF4CjD_xn1HdylMj2S-rD-7qjNRsUxtOWXIZX6czvqbM5MTyxJzQMiakG5uMx_oCNfpFCNdvb2GnxSZmnnhHluPL2u4tjeNJn-jEDTAS15lwE1KhxhysyMJUXBQH0TZ2unQAH5yEo_Cg738SgoyHoXBEPI' has set 'SameSite=None' and must also set 'Secure'. warn: Microsoft.AspNetCore.Http.ResponseCookies[1] The cookie '.AspNetCore.Correlation.Vumn2KQaKvh3Pk48WKw8hgGVDL7wL2jpMcfoyZS2oYc' has set 'SameSite=None' and must also set 'Secure'....

I resolved this by implementing the docker helpers in my own code and also setting the OpenID stuff appropriately. ```csharp builder.Services.Configure(options => { //options.Secure = CookieSecurePolicy.Always; options.MinimumSameSitePolicy = SameSiteMode.Unspecified; options.Secure...

Same question here. We're wanting to use claim based rather than role based.

Works fine for me: conn.SetupDapper(c => c.Query(It.IsAny(), new { Account = It.IsAny() }, null, false, null, CommandType.StoredProcedure)).Returns(new BusinessObj[] { obj }); However, you can't use something like c.QueryFirst as it...

@johreh There are plenty of options available. For a more complex version: https://github.com/localForage/localForage or a more simple library: https://github.com/marcuswestin/store.js I noticed that you stayed away from frameworks or libraries perse,...