Add comments API support and tests
Some checks failed
Dotnet build and test / build (push) Has been cancelled
Dotnet build and test / log-the-inputs (push) Has been cancelled

This commit is contained in:
Paul Schneider 2026-08-10 22:27:52 +01:00
commit eebc83cf7e
No known key found for this signature in database
GPG key ID: 1E66C65EE2B46F1B
6 changed files with 236 additions and 18 deletions

View file

@ -3,7 +3,7 @@ var notifClick =
function(nid) {
if (nid > 0) {
$.get({
url: '/api/dimiss/click/' + nid,
url: '/api/v1/dimiss/click/' + nid,
success: $('div[data-nid='+nid+']').remove()
});
}