Darrel O'Pry
Darrel O'Pry
@jaap3 I ended up with ```python def validate_silent_login(self, request) -> None: # request is an OAuthLib.common.Request and doesn't have the session # or user of the django request. We will...
@Hussseinkizz Could you describe how you imagine a React + Vite template would work? React is a component framework and Vite is a build tool. Neither of them are site...
.exists should simply check if the file exists. allow_overwrite has absolutely nothing to do with whether a file exists. This is a straight forward bug. allow_overwrite should only impact methods...
I feel like fixtures would be a good approach. We're not going to be making major content changes and they're relatively easy to maintain with some caveats.
I would be something along the lines of settings.py ```python INSTALLED_APPS = [ # graphql to make it all headless "graphene_django", "grapple", "myapp", # core wagtail stuff "wagtail.contrib.forms", "wagtail.contrib.redirects", "wagtail.embeds",...
@zerolab this hit me again today as I was trying to upgrade my wagtail instance. I figured I should get on 5 before 6 gets releases. I don't want to...
I was revisting my wagtail 5.x updates and I've ran into this again... It seems like snippets are hunting for hooks ``` File "...\venv\lib\site-packages\grapple\actions.py", line 102, in add_app for snippet...
@Tuhin-thinks this looks good. I think the last task to get this merge ready is the test.
@Tuhin-thinks any updates on the tests?
> Hi, @dopry really sorry about the long wait. Added test cases now, for `middleware.py` file's validation. > > Please let me know once you find time to review this....