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

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