mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-15 14:03:06 +00:00
Merged submission module code
This commit is contained in:
14
src/app/core/json-patch/json-patch.model.ts
Normal file
14
src/app/core/json-patch/json-patch.model.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
export enum JsonPatchOperationType {
|
||||
test = 'test',
|
||||
remove = 'remove',
|
||||
add = 'add',
|
||||
replace = 'replace',
|
||||
move = 'move',
|
||||
copy = 'copy',
|
||||
}
|
||||
|
||||
export class JsonPatchOperationModel {
|
||||
op: JsonPatchOperationType;
|
||||
path: string;
|
||||
value: any;
|
||||
}
|
Reference in New Issue
Block a user