From b100df281fa6c33676b7c338a266b1d0d4c97068 Mon Sep 17 00:00:00 2001 From: hoa3 Date: Thu, 18 Jul 2024 16:14:23 +0200 Subject: [PATCH] doc: add comments for excel Download --- frontend/src/app/data.service.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/frontend/src/app/data.service.ts b/frontend/src/app/data.service.ts index 7ec4fe9..7f595ca 100644 --- a/frontend/src/app/data.service.ts +++ b/frontend/src/app/data.service.ts @@ -144,6 +144,9 @@ export class DataService { return repoData; } +// request to get all users, repositories, institutions and organizations, +// these are used to get all the data for excel export and is restricted to logged in users +// ***************************************************************************************************** async loadAllUsers() { const userData = await this.http .get<{ @@ -184,6 +187,8 @@ async loadAllUsers() { return organizationData; } + // ***************************************************************************************************** + async loadUserData(config: { search: string; sort: string;