Skip to content

Commit

Permalink
Merge pull request #195 from rciam/devel
Browse files Browse the repository at this point in the history
Devel
  • Loading branch information
linathedog committed Oct 16, 2023
2 parents 31fbd86 + f0f5ca8 commit 19e01e2
Show file tree
Hide file tree
Showing 6 changed files with 72 additions and 75 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ class ServiceStateRepository {
}
if((deployed || decoded_message.state==='error')&&done){
updateState.push({id:decoded_message.id,state:decoded_message.state,outdated:false});
if(deployed){
if(deployed&&decoded_message.state!=='error'){
ids.push(decoded_message.id);
}
if(decoded_message.state==='error'){
Expand Down
42 changes: 19 additions & 23 deletions federation-registry-backend-api/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion federation-registry-backend-api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"mz": "^2.7.0",
"nodemailer": "^6.6.0",
"nodemailer-express-handlebars": "^5.0.0",
"nodemon": "^2.0.19",
"nodemon": "^3.0.1",
"openid-client": "^5.0.2",
"pg-monitor": "1.3.1",
"pg-promise": "11.5.0",
Expand Down
96 changes: 48 additions & 48 deletions federation-registry-frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion federation-registry-frontend/src/ServiceList.js
Original file line number Diff line number Diff line change
Expand Up @@ -990,7 +990,7 @@ function TableItem(props) {
}
{
(user.review||
(props.service.owned&&tenant.config.test_env.included(props.service.integration_environment)))
(props.service.owned&&tenant.config.test_env.includes(props.service.integration_environment)))
&&props.service.petition_id
&&!(props.service.status==='changes')
&&(props.service.status!=='request_review'||(props.service.status==='request_review'&&user.review_restricted))?
Expand Down
3 changes: 2 additions & 1 deletion federation-registry-frontend/src/initialValues.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@
"profile",
"email",
"voperson_id",
"eduperson_entitlement"
"eduperson_entitlement",
"voperson_external_affiliation"
],
"grant_types": [
"authorization_code"
Expand Down

0 comments on commit 19e01e2

Please sign in to comment.