Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable the justice identity capture auth flow in production #1288

Merged
merged 1 commit into from
Apr 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion controlpanel/frontend/views/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,6 @@ def get(self, request, *args, **kwargs):
if request.user.is_superuser:
return super().get(request, *args, **kwargs)

# TODO add feature request check
if settings.features.justice_auth.enabled and not request.user.justice_email:
return super().get(request, *args, **kwargs)

Expand Down
4 changes: 2 additions & 2 deletions settings.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ enabled_features:
_HOST_prod: false
_HOST_alpha: false
justice_auth:
_DEFAULT: false
_DEFAULT: true
_HOST_dev: true
_HOST_test: true

_HOST_prod: true

AWS_SERVICE_URL:
_HOST_dev: "https://aws.services.dev.analytical-platform.service.justice.gov.uk"
Expand Down
Loading