Complaints working, web comments response page, filtering for announcements

This commit is contained in:
Dimitar Byalkov
2023-06-09 04:57:28 +02:00
parent d8e185757d
commit d81450ed21
20 changed files with 336 additions and 48 deletions

View File

@@ -132,7 +132,7 @@ namespace WinForms
private void btnCreateComment_Click(object sender, EventArgs e)
{
CommentForm form = new CommentForm(null, false, currentUser, true, complaint.ID);
CommentForm form = new CommentForm(null, false, currentUser, "complaint", complaint.ID);
form.ShowDialog();
RefreshComments();
}