mirror of
https://github.com/yogeshojha/rengine.git
synced 2026-09-18 15:57:44 +02:00
11 lines
260 B
Python
11 lines
260 B
Python
from django.db import models
|
|
|
|
|
|
class NotificationHooks(models.Model):
|
|
hook_name = models.CharField(max_length=200)
|
|
hook_url = models.CharField(max_length=500)
|
|
send_notif = models.BooleanField()
|
|
|
|
def __str__(self):
|
|
return self.hook_name
|