Guest User

Untitled

a guest
Nov 18th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. trigger ChatterFeedComment on FeedComment (before delete) {
  2. for(FeedComment comment : Trigger.old){
  3. comment.addError('Posts cannot be deleted');
  4. }
  5. }
Add Comment
Please, Sign In to add comment