Subversion Repositories SmartDukaan

Rev

Rev 34530 | Rev 35458 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 34530 Rev 34540
Line 76... Line 76...
76
        return responseSender.ok(true);
76
        return responseSender.ok(true);
77
    }
77
    }
78
 
78
 
79
    @RequestMapping(value = "/click2call/push-call-log-handler", method = RequestMethod.POST, consumes = MediaType.APPLICATION_JSON_VALUE)
79
    @RequestMapping(value = "/click2call/push-call-log-handler", method = RequestMethod.POST, consumes = MediaType.APPLICATION_JSON_VALUE)
80
    public ResponseEntity<?> click2callPushLogHandler(@RequestBody PushCallLogModel pushCallLogModel) throws Exception {
80
    public ResponseEntity<?> click2callPushLogHandler(@RequestBody PushCallLogModel pushCallLogModel) throws Exception {
81
        LOGGER.info("update call detail {}", pushCallLogModel);
81
        LOGGER.info("update call detail - push log {}", pushCallLogModel);
82
        recordingService.updateAgentCallLog(pushCallLogModel);
82
        recordingService.updateAgentCallLog(pushCallLogModel);
83
        return responseSender.ok("true");
83
        return responseSender.ok("true");
84
    }
84
    }
85
 
85
 
86
 
86