Skip to content

Commit

Permalink
Merge pull request #8 from eu-digital-green-certificates/feat/refacto…
Browse files Browse the repository at this point in the history
…ring

fix typo
  • Loading branch information
epicsoft-llc authored Sep 16, 2021
2 parents 4da7aa1 + ee73445 commit 30503df
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 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 @@ -55,5 +55,5 @@ public class QrCodeDto {

// Company Name
// used from application.yml
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())
.serviceProvider(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 30503df

Please sign in to comment.