8000 fix: Redirects to newly created object by fsbraun · Pull Request #7864 · django-cms/django-cms · GitHub
[go: up one dir, main page]

Skip to content

fix: Redirects to newly created object #7864

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Apr 4, 2024
2 changes: 1 addition & 1 deletion cms/tests/test_cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,7 @@ def test_no_page_cache_on_toolbar_edit(self):
with self.settings(CMS_PAGE_CACHE=True):
superuser = self.get_superuser()
# Create a test page
page = create_page('test page 1', 'nav_playground.html', 'en')
page = create_page("test page 1", "nav_playground.html", "en")
page_content = self.get_pagecontent_obj(page)
page_url = page.get_absolute_url()
page_edit_url = get_object_edit_url(page_content)
Expand Down
0