buli
2023-06-05 e9e1806b0f4b5bae1fc36204ccc5d6fdad52d66f
1
2
3
4
5
6
trigger RentalApplyShare on Rental_Apply__c (before insert,after insert,before update,after update) {
    if(Test.isRunningTest()||UserInfo.getUserId()!=System.Label.ByPassTrigger){
        RentalApplyShareHandler handler = new RentalApplyShareHandler();
        handler.run();
    } 
}