buli
2022-05-13 08a21f49f2eaf9cfc19ceb67b196cc36ba689305
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);
    }
}