OpenSpacesAndPlaces

Results 29 comments of OpenSpacesAndPlaces

Props to @paulirwin. There's no v2 API sample code (for any language I've seen) - it was a great starting point to get going from (we're just considering using Harvest...

@JonathanMagnan Is there a fix for this? Using e Include="HtmlAgilityPack.NetCore" Version="1.5.0.1" Trying to modify and SVG and it keeps removing the self-closers. OptionWriteEmptyNodes seems to have no effect. ---- Only...

There's no way to override the self-closure? Even at the node level? If I can to flip flags that would be fine. Or if there a way to do an...

If you need differing policies based on role - then MetaData as above is the way to go. If you just need to give multiple users with different roles access...

`Why do you use break in your example?` Just looks like a stylistic choice - break is going to end the loop and return the initialized value of `isValid =...

Taking a second look - in that sample it should really be: ``` context.ReportError($"Required policy '{policy}' is not present."); isValid = false; break; ``` The way that's written a case...

You read more closely than I did :) - I failed to read the method name "SatisfiesAtLeastOnePolicyAsync".

It's not directly supported from what I've seen - from previous dicussions on the topic, auth is expected to more/less be your own custom coding. Ideally you're running this under...

Also keep in mind, "UserContext" can be anything you want.

Easiest way I found to-do with was: (at whatever levels you need) ``` new FieldType { ... Metadata = dRules // This field lets us define properties anything in the...