Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Schwarz committed Sep 16, 2021
1 parent cd0563a commit 91b0d30
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,5 @@ public class IdentityProperties {

private String consent;

private String servicePovider;
private String serviceProvider;
}
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public QrCodeDto getBySubject(String subject) {
.token(accessTokenService.buildAccessToken(subject))
.consent(properties.getConsent())
.subject(subject)
.servicePovider(properties.getServicePovider())
.servicePovider(properties.getServiceProvider())
.build();
}
}
2 changes: 1 addition & 1 deletion src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ identity:
#### serviceIdentity
serviceIdentityUrl: https://validation-decorator.example
consent: I want to check your DCC to confirm your booking! :)
servicePovider: Service Provider.com
serviceProvider: Service Provider.com
restTemplate:
connectionTimeout: 3000
readTimeout: 3000
Expand Down

0 comments on commit 91b0d30

Please sign in to comment.