Add new category for noda log edits: notes

This commit is contained in:
2025-08-13 01:41:12 +02:00
parent 58d795c806
commit 5fedbd898e

View File

@@ -10,14 +10,14 @@ declare(strict_types = 1);
* Provides functions for easily logging updates to the main noda DB tables.
*/
final class NodaLogEdit {
const ACTION_WHITELIST = [
public const ACTION_WHITELIST = [
'insert',
'update',
'merge',
'delete',
];
const SECTION_WHITELIST = [
public const SECTION_WHITELIST = [
'base',
'addition',
'noda_link',
@@ -32,6 +32,7 @@ final class NodaLogEdit {
'status',
'translation',
'group',
'note',
];
/**