cfpb / django-flags

Feature flags for Django projects
https://cfpb.github.io/django-flags/
Creative Commons Zero v1.0 Universal
260 stars 32 forks source link

That fallback views need to take the same arguments as flagged views is non-obvious and non-intuitive #37

Closed willbarton closed 5 years ago

willbarton commented 5 years ago

Currently fallback views (given in the view decorators or in flagged_url/urls) need to take the exact same arguments as the view they are the fallback for because the fallback is passed the same args and kwargs.

This should be handled in a more intuitive way, or at least better documented.