mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-18 15:33:04 +00:00
Switched to storing requests based on UUID, generalized UUIDIndexReducer to work with any type of index
This commit is contained in:
9
src/app/core/shared/uuid.service.ts
Normal file
9
src/app/core/shared/uuid.service.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
import { Injectable } from '@angular/core';
|
||||
import * as uuidv4 from 'uuid/v4';
|
||||
|
||||
@Injectable()
|
||||
export class UUIDService {
|
||||
generate(): string {
|
||||
return uuidv4();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user