You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Currently inclusion and exclusion definitions are case sensitive on model label: auth.user won't work, auth.User is valid.
Describe the solution you'd like
This may be simpler to have case insensitive. I don't think there is added value to keep case sensitive.
It has been developed with case sensitive because it was not clear if case mismatching could happen with between models from applications, however Django itself in dumpdata manage case insensitive so it seems we could stand on this.
This means we probably have to lowercase everything from appstore. This change should be retro compatible with definitions written with case sensitive.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Currently inclusion and exclusion definitions are case sensitive on model label:
auth.user
won't work,auth.User
is valid.Describe the solution you'd like
This may be simpler to have case insensitive. I don't think there is added value to keep case sensitive.
It has been developed with case sensitive because it was not clear if case mismatching could happen with between models from applications, however Django itself in dumpdata manage case insensitive so it seems we could stand on this.
This means we probably have to lowercase everything from appstore. This change should be retro compatible with definitions written with case sensitive.
The text was updated successfully, but these errors were encountered: