chore: import upstream snapshot with attribution
This commit is contained in:
Vendored
+8
@@ -0,0 +1,8 @@
|
||||
trigger AccountTrigger on Account (before insert, before update, after insert, after update) {
|
||||
if (Trigger.isBefore) {
|
||||
AccountService.validateAccounts(Trigger.new);
|
||||
}
|
||||
if (Trigger.isAfter && Trigger.isInsert) {
|
||||
AccountService.sendWelcomeNotifications(Trigger.new);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user