We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 570e75d + f290b2b commit 840cb89Copy full SHA for 840cb89
gitlab/objects.py
@@ -1376,6 +1376,7 @@ class ProjectIssueNote(GitlabObject):
1376
canDelete = False
1377
requiredUrlAttrs = ['project_id', 'issue_id']
1378
requiredCreateAttrs = ['body']
1379
+ optionalCreateAttrs = ['created_at']
1380
1381
1382
class ProjectIssueNoteManager(BaseManager):
@@ -1394,7 +1395,7 @@ class ProjectIssue(GitlabObject):
1394
1395
'labels', 'created_at']
1396
optionalUpdateAttrs = ['title', 'description', 'assignee_id',
1397
'milestone_id', 'labels', 'created_at',
- 'state_event']
1398
+ 'updated_at', 'state_event']
1399
shortPrintAttr = 'title'
1400
managers = (
1401
('notes', ProjectIssueNoteManager,
0 commit comments