Skip to content

Commit

Permalink
Formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
oharsta committed Aug 21, 2024
1 parent 9955322 commit a6c076a
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,8 @@ public ResponseEntity<Map<String, Object>> deviceAuthorization(HttpServletReques
);
deviceAuthorizationRepository.save(deviceAuthorization);

Map<String, Object> results = Map.of("device_code", deviceCode,
Map<String, Object> results = Map.of(
"device_code", deviceCode,
"user_code", userCode,
"verification_uri", verificationUrl,
"verification_uri_complete", String.format("%s?user_code=%s", verificationUrl, userCode),
Expand Down

0 comments on commit a6c076a

Please sign in to comment.