Switched to storing requests based on UUID, generalized UUIDIndexReducer to work with any type of index

This commit is contained in:
Art Lowel
2017-12-12 17:45:32 +01:00
parent d775467fcb
commit 5f5d9eaeee
37 changed files with 449 additions and 340 deletions

View File

@@ -0,0 +1,9 @@
import { Injectable } from '@angular/core';
import * as uuidv4 from 'uuid/v4';
@Injectable()
export class UUIDService {
generate(): string {
return uuidv4();
}
}