Advertisement
lamorfini

Untitled

May 20th, 2024
637
0
351 days
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.32 KB | None | 0 0
  1.     def approve(self):
  2.         """ Approves this comment to be shown in the website """
  3.         self.active = True
  4.         return self.save(update_fields = ['active'])
  5.    
  6.     def reject(self):
  7.         """ Disproves this comment """
  8.         self.active = False
  9.         return self.save(update_fields = ['active'])
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement