Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public class AuthProxy {
* before redirecting back to the smart app.
* @param reqParamValue - The parameters of the request
* @param httpServletResponse - The response object to be sent back
* @param request - The request that has been recieved
* @param request - The request that has been received
* @throws IOException - the uri components builder might throw an IO
*/
@GetMapping("/auth")
Expand Down Expand Up @@ -120,7 +120,7 @@ public AuthResponse getLaunch(@RequestBody Payload payload) {
* @param launch - the launch id is included in the path
* @param reqParamValue - the parameters of the url should include only the code, state, and the original redirect url
* @param httpServletResponse - the response object
* @param request - the request recieved
* @param request - the request received
*/
@GetMapping("/_auth/{launch}")
public void authSync(@PathVariable String launch, @RequestParam Map<String, String> reqParamValue, HttpServletResponse httpServletResponse, HttpServletRequest request) {
Expand Down