mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-09 11:03:05 +00:00
Added TypeDoc/comments
This commit is contained in:
@@ -8,9 +8,15 @@ import {
|
||||
JsonPatchOperationsActionTypes
|
||||
} from './json-patch-operations.actions';
|
||||
|
||||
/**
|
||||
* Provides effect methods for jsonPatch Operations actions
|
||||
*/
|
||||
@Injectable()
|
||||
export class JsonPatchOperationsEffects {
|
||||
|
||||
/**
|
||||
* Dispatches a FlushPatchOperationsAction for every dispatched CommitPatchOperationsAction
|
||||
*/
|
||||
@Effect() commit$ = this.actions$.pipe(
|
||||
ofType(JsonPatchOperationsActionTypes.COMMIT_JSON_PATCH_OPERATIONS),
|
||||
map((action: CommitPatchOperationsAction) => {
|
||||
|
Reference in New Issue
Block a user