Skip to content

Commit e826db4

Browse files
fix: update enum values in Changes entity to follow _op's naming convention. (#162)
Fix issues: 1. #158
1 parent 6dfb0ca commit e826db4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

index.cds

+3-3
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@ entity Changes {
6969

7070
@title: '{i18n>Changes.modification}'
7171
modification : String enum {
72-
create = 'Create';
73-
update = 'Edit';
74-
delete = 'Delete';
72+
Create = 'create';
73+
Update = 'update';
74+
Delete = 'delete';
7575
};
7676

7777
valueDataType : String(5000) @title: '{i18n>Changes.valueDataType}';

0 commit comments

Comments
 (0)