Skip to content
Snippets Groups Projects
Commit efc761e6 authored by Kristof De Langhe's avatar Kristof De Langhe
Browse files

Missing JDocs

parent 3d1e6e63
No related branches found
No related tags found
No related merge requests found
......@@ -66,6 +66,12 @@ export class RequestService {
return createSelector(selector, (state: IndexState) => this.getUuidsFromHrefSubstring(state, name, href));
}
/**
* Fetch a list of request UUIDs from a given index substate of which the request href contains a given substring
* @param state The IndexState
* @param name The name of the index substate we're fetching request UUIDs from
* @param href Substring that the request's href should contain
*/
private getUuidsFromHrefSubstring(state: IndexState, name: string, href: string): string[] {
let result = [];
if (isNotEmpty(state)) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment