stash
This commit is contained in:
parent
a1d41430bf
commit
77a5b56642
7 changed files with 80 additions and 66 deletions
17
core/tickets/migrations/0003_alter_issuethread_options.py
Normal file
17
core/tickets/migrations/0003_alter_issuethread_options.py
Normal file
|
@ -0,0 +1,17 @@
|
|||
# Generated by Django 4.2.7 on 2023-12-06 13:47
|
||||
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('tickets', '0002_issuethread_assigned_to_issuethread_last_activity_and_more'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterModelOptions(
|
||||
name='issuethread',
|
||||
options={'permissions': [('send_mail', 'Can send mail')]},
|
||||
),
|
||||
]
|
|
@ -11,6 +11,11 @@ class IssueThread(SoftDeleteModel):
|
|||
assigned_to = models.CharField(max_length=255, null=True)
|
||||
last_activity = models.DateTimeField(auto_now=True)
|
||||
|
||||
class Meta:
|
||||
permissions = [
|
||||
('send_mail', 'Can send mail'),
|
||||
]
|
||||
|
||||
|
||||
class Comment(models.Model):
|
||||
id = models.AutoField(primary_key=True)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue