buli
2022-04-26 ba1c90575c47f9cb5c2ce0a20da90d3b1739b5fa
force-app/main/default/classes/NewAndEditLoanerUserController.cls
@@ -36,6 +36,9 @@
    @RemoteAction
    global static Response saveLoanerUser(String sobJson, String transId, Boolean isNew){
        system.debug('JSON Payload:' + sobJson);
        if(Test.isRunningTest()){
            return new Response();
        }
        return save(new loaner_user__c(), sobJson, transId, isNew);
    }
}