Matthew Kelly
Matthew Kelly
Would that not suffer the same issue as well, as it's also using `Start-Process` to run `OpenApi-TuttiFrutti.ps1`?
You're right that those functions aren't really built for this use case. Technically dot-sourcing them in `Add-PodeMiddleware` dooooes work, however the new function definitions would be scoped only to the...
Funnily enough the original method was the workaround! Because pre-v1.0.0 you couldn't hide an element by default on its initial creation, the workaround was to use the page loaded event...
Hi @jbaechtelMT, Was this meant to be raised over at [Pode.Web](https://github.com/Badgerati/Pode.Web) instead? There's also the option to add custom buttons for custom export options as well here: https://badgerati.github.io/Pode.Web/Tutorials/Elements/Table/#buttons 😃
For 408 this is expected, the handling of the timeout is done further up the stack within the .NET code, rather than within the PowerShell code so it's difficult to...
My issue with moving PowerShell code directly into .NET, and using the PS.SDK library, is that there are many edge cases where things could break. For example, if anyone is...
Hi @slick789, are you able to say which example you were testing with - or give the code for it? Under the version for PowerShell you've put "1.0.0r2" - I'm...
Hey @breento @slick789, `-ResponseType Http` will work for most people as expected - I'm tempted to make it the default in v1.0 and it'll act the same as v0.8. `-ResponseType...
Hi @NicolasTNS, I think I might have worked out why this happens, as I also just triggered the same error. It will require a fix in core Pode though. To...
Hi @NicolasTNS, @datenschieber, @diflartle, I've just reproduced this myself, and it's caused by having AutoImport disabled in your `server.psd1` file: ```powershell @{ Server = @{ AutoImport = @{ Modules =...