Subversion Repositories SmartDukaan

Rev

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

Rev 34483 Rev 34530
Line 74... Line 74...
74
        LOGGER.info("update call detail {}", callDetail);
74
        LOGGER.info("update call detail {}", callDetail);
75
        recordingService.updateAgentRecordingUrl(callDetail);
75
        recordingService.updateAgentRecordingUrl(callDetail);
76
        return responseSender.ok(true);
76
        return responseSender.ok(true);
77
    }
77
    }
78
 
78
 
79
    @RequestMapping(
-
 
80
            value = "/click2call/push-call-log-handler",
-
 
81
            method = RequestMethod.POST,
-
 
82
            consumes = MediaType.APPLICATION_JSON_VALUE
79
    @RequestMapping(value = "/click2call/push-call-log-handler", method = RequestMethod.POST, consumes = MediaType.APPLICATION_JSON_VALUE)
83
    )
-
 
84
    public ResponseEntity<?> click2callPushLogHandler(@RequestBody PushCallLogModel pushCallLogModel) throws Exception {
80
    public ResponseEntity<?> click2callPushLogHandler(@RequestBody PushCallLogModel pushCallLogModel) throws Exception {
85
        LOGGER.info("update call detail {}", pushCallLogModel);
81
        LOGGER.info("update call detail {}", pushCallLogModel);
86
        recordingService.updateAgentCallLog(pushCallLogModel);
82
        recordingService.updateAgentCallLog(pushCallLogModel);
87
        return responseSender.ok(true);
83
        return responseSender.ok("true");
88
    }
84
    }
89
 
85
 
90
 
86
 
91
    @Value("${razorpay.account.keySecret}")
87
    @Value("${razorpay.account.keySecret}")
92
    private String razorpaySecret;
88
    private String razorpaySecret;