Conversation
Bug fixes:
- E007: replace 'group' (singular) with 'groups' (plural) across checks,
utils, and docstrings to match presets.py v0.5.0 format
- E022: fix false positives on scope ownership — only check conflicts
between discovered app presets, not the already-merged base preset
- any_permission_check(), allowed_for(), denied_for(): add missing
is_active=True filter so deactivated grants are properly ignored
- authorization.py: use getattr(settings, 'ACCESS_MANAGER_SCOPE', 'access')
to prevent AttributeError when setting is absent
Internationalization:
- Translate all exception messages from French to English using
_('...').format(...) syntax for proper gettext support
- Update French .po translations — remove fuzzy markers, fill missing
entries, fix python-brace-format placeholders
Cleanup:
- Remove pagination module (CursorPagination) — controllers already use
Django Ninja Extra's PageNumberPaginationExtra
- Fix variable shadowing (roles -> role_objs) in update_group()
- Remove dead 'scopes' key from load_preset docstring
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Bug fixes:
Internationalization:
Cleanup: