Skip to content
This repository was archived by the owner on Dec 9, 2025. It is now read-only.

Commit c01344c

Browse files
committed
fixed compilation error
1 parent f5be001 commit c01344c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/appirio/tech/core/service/identity/IdentityApplication.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ public void run(IdentityConfiguration configuration, Environment environment) th
233233
UserResource userResource = new UserResource(userDao, roleDao, cacheService, eventProducer, eventBusServiceClient, configuration.getM2mAuthConfiguration().getUserProfiles());
234234
userResource.setAuth0Client(configuration.getAuth0()); // TODO: constructor
235235
userResource.setDomain(configuration.getAuthDomain());
236-
userResource.setSendgridTemplateId(configuration.getContext().get("sendGridTemplateId").toString());
236+
userResource.setSendgridTemplateId(Utils.getString("sendGridTemplateId"));
237237
// this secret _used_ to be different from the one used in AuthorizationResource.
238238
// it _was_ the secret x2. (userResource.setSecret(getSecret()+getSecret());)
239239
// we assume this was done to further limit the usability of the oneTimeToken generated in userResource

0 commit comments

Comments
 (0)