Skip to content

Commit

Permalink
Merge pull request #17 from springload/fix-list-reverse
Browse files Browse the repository at this point in the history
Fix reverse url for blocklist
  • Loading branch information
tacitus authored Jun 23, 2018
2 parents b76c192 + 889ce17 commit f9defec
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

...

## [1.1.7] - 2018-06-24

### Added

- Fix reverse for blocklist


## [1.1.6] - 2018-06-22

### Added
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

setup(
name='wagtailenforcer',
version='1.1.6',
version='1.1.7',
description='WagtailEnforcer, the Wagtail arm of the law.',
author='Springload',
author_email='hello@springload.co.nz',
Expand Down
2 changes: 1 addition & 1 deletion wagtailenforcer/views/axes/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,4 +70,4 @@ def reset(request, id):
else:
messages.error(request, _("User '{0}' was not blocked.").format(user))

return HttpResponseRedirect(reverse('wagtailenforcer.views.axes.views.list'))
return HttpResponseRedirect(reverse('wagtailenforcer_blocked_users'))

0 comments on commit f9defec

Please sign in to comment.