-
Notifications
You must be signed in to change notification settings - Fork 514
Message: Fix message status update on deletion for sender and receiver - refs BT#21887 #5695
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
…r - refs BT#21887
'parent' => 'exact', | ||
] | ||
)] | ||
#[ApiFilter(SearchFilter::class, properties: [ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Perl-style comments are not allowed. Use "// Comment." or "/* comment */" instead.
'receivers.receiverType' => 'exact', | ||
'receivers.tags.tag' => 'exact', | ||
'parent' => 'exact', | ||
])] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Line indented incorrectly; expected at least 4 spaces, found 0
@@ -85,7 +98,7 @@ | |||
public const MESSAGE_TYPE_INVITATION = 6; | |||
public const MESSAGE_TYPE_CONVERSATION = 7; | |||
// status | |||
public const MESSAGE_STATUS_DELETED = 3; | |||
public const MESSAGE_STATUS_SENDER_DELETED = 3; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Line indented incorrectly; expected 8 spaces, found 4
@@ -46,6 +46,7 @@ class MessageRelUser | |||
{ | |||
public const TYPE_TO = 1; | |||
public const TYPE_CC = 2; | |||
public const TYPE_SENDER = 8; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Line indented incorrectly; expected 8 spaces, found 4
@@ -26,6 +29,8 @@ public function __construct( | |||
private readonly FlysystemStorage $storage, | |||
private readonly EntityManagerInterface $entityManager, | |||
private readonly ResourceNodeRepository $resourceNodeRepository, | |||
private readonly Security $security, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Line indented incorrectly; expected 4 spaces, found 8
Code Climate has analyzed commit e177042 and detected 11 issues on this pull request. Here's the issue category breakdown:
View more on Code Climate. |
No description provided.