Skip to content

Commit b41cd8e

Browse files
authored
Merge pull request #137 from jhoff/add_system_to_note
Notes have a system field
2 parents e656e8c + 89e8aa7 commit b41cd8e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lib/Gitlab/Model/Note.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
* @property-read string $parent_type
1313
* @property-read Issue|MergeRequest $parent
1414
* @property-read string $attachment
15+
* @property-read bool $system
1516
*/
1617
class Note extends AbstractModel
1718
{
@@ -26,7 +27,8 @@ class Note extends AbstractModel
2627
'updated_at',
2728
'parent_type',
2829
'parent',
29-
'attachment'
30+
'attachment',
31+
'system'
3032
);
3133

3234
/**

0 commit comments

Comments
 (0)