Skip to content

Commit

Permalink
Merge pull request #36 from bcgov/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
ychung-mot authored Mar 25, 2024
2 parents aab19c6 + 9d01284 commit a7c78a0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion helm/main/values-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ global:
'SSO_AUTHORITY': 'https://dev.loginproxy.gov.bc.ca/auth/realms/standard'
'SM_LOGOFF_URL': 'https://logontest7.gov.bc.ca/clp-cgi/logoff.cgi/'
'CHES_TOKEN_URL': 'https://dev.loginproxy.gov.bc.ca/auth/realms/comsvcauth/protocol/openid-connect/token'
'CHES_URL': 'https://ches-test.api.gov.bc.ca'
'CHES_URL': 'https://ches-dev.api.gov.bc.ca'

nameOverride: strdss-test
fullnameOverride: strdss-test
Expand Down
2 changes: 1 addition & 1 deletion server/StrDss.Service/UserService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ public async Task<Dictionary<string, List<string>>> CreateAccessRequestAsync(Acc

_unitOfWork.Commit();

var adminUsers = await _userRepo.GetAdminUsers();
var adminUsers = (await _userRepo.GetAdminUsers()).Where(x => x.IsEnabled).ToList();

if (adminUsers.Count > 0)
{
Expand Down

0 comments on commit a7c78a0

Please sign in to comment.