mirror of
https://github.com/HamzaSha1/zod-backend.git
synced 2025-08-26 06:09:41 +00:00
jira-32 list of all task of junior API, changes in Search task API
This commit is contained in:
@ -108,6 +108,12 @@ class JuniorTask(models.Model):
|
||||
is_active = models.BooleanField(default=True)
|
||||
"""Task is approved or not"""
|
||||
is_approved = models.BooleanField(default=False)
|
||||
"""request task on particular date"""
|
||||
requested_on = models.DateTimeField(auto_now_add=False, null=True, blank=True)
|
||||
"""reject task on particular date"""
|
||||
rejected_on = models.DateTimeField(auto_now_add=False, null=True, blank=True)
|
||||
"""complete task on particular date"""
|
||||
completed_on = models.DateTimeField(auto_now_add=False, null=True, blank=True)
|
||||
"""Profile created and updated time"""
|
||||
created_at = models.DateTimeField(auto_now_add=True)
|
||||
updated_at = models.DateTimeField(auto_now=True)
|
||||
|
Reference in New Issue
Block a user