| Line 163... |
Line 163... |
| 163 |
return responseSender.ok(googleLoginProcessor.process(googleLoginRequest.getToken()));
|
163 |
return responseSender.ok(googleLoginProcessor.process(googleLoginRequest.getToken()));
|
| 164 |
}
|
164 |
}
|
| 165 |
@RequestMapping(value = "/store/token/{storeCode}", method = RequestMethod.GET)
|
165 |
@RequestMapping(value = "/store/token/{storeCode}", method = RequestMethod.GET)
|
| 166 |
public ResponseEntity<?> googleLogin(HttpServletRequest request, @PathVariable String storeCode)
|
166 |
public ResponseEntity<?> googleLogin(HttpServletRequest request, @PathVariable String storeCode)
|
| 167 |
throws ProfitMandiBusinessException {
|
167 |
throws ProfitMandiBusinessException {
|
| - |
|
168 |
LOGGER.info("StoreCode {}", storeCode);
|
| 168 |
return responseSender.ok(googleLoginProcessor.processStore(storeCode));
|
169 |
return responseSender.ok(googleLoginProcessor.processStore(storeCode));
|
| 169 |
}
|
170 |
}
|
| 170 |
|
171 |
|
| 171 |
@RequestMapping(value = ProfitMandiConstants.URL_USER_TOKEN_IS_EXPIRED, method = RequestMethod.GET)
|
172 |
@RequestMapping(value = ProfitMandiConstants.URL_USER_TOKEN_IS_EXPIRED, method = RequestMethod.GET)
|
| 172 |
public ResponseEntity<?> tokenIsExpired(HttpServletRequest request, @RequestParam(name = "token") String token)
|
173 |
public ResponseEntity<?> tokenIsExpired(HttpServletRequest request, @RequestParam(name = "token") String token)
|