Skip to content

Settings

django-gesha Settings


GESHA_ALLOWED_URL_NAMES

Default: []

A list of allowed URL names for use in reversing URLs. Supports Unix shell-style wildcards (*, ?, [seq] and [!seq]). Example to match login, logout and all paths in the myapp namespace:

GESHA_ALLOWED_URL_NAMES = ["log*", "myapp:*"]

The default setting (an empty list) disables all patterns.