Skip to content

Commit

Permalink
Add apps.authentication to list of installed apps. (#389)
Browse files Browse the repository at this point in the history
  • Loading branch information
djperrefort committed Aug 20, 2024
1 parent 377ec72 commit 2f4aa47
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def test_get_serializer_class_for_staff_user(self) -> None:
self.assertEqual(serializer_class, PrivilegeUserSerializer)

def test_get_serializer_class_for_regular_user(self) -> None:
"""Test the `RestrictedUserSerializer` serializer is returned for a staff user."""
"""Test the `RestrictedUserSerializer` serializer is returned for a generic user."""

request = self.factory.get('/users/')
request.user = self.regular_user
Expand Down
1 change: 1 addition & 0 deletions keystone_api/main/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@
'plugins',
'apps.admin_utils',
'apps.allocations',
'apps.authentication',
'apps.health',
'apps.logging',
'apps.notifications',
Expand Down

0 comments on commit 2f4aa47

Please sign in to comment.