You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: database-connector/src/main/java/life/qbic/projectmanagement/experiment/persistence/BatchJpaRepository.java
Copy file name to clipboardexpand all lines: projectmanagement-domain/src/main/java/life/qbic/projectmanagement/application/authorization/acl/ProjectAccessService.java
+8
Original file line number
Diff line number
Diff line change
@@ -21,6 +21,14 @@ public interface ProjectAccessService {
21
21
*/
22
22
List<String> listUsers(ProjectIdprojectId);
23
23
24
+
/**
25
+
* Lists all active users which have a permission within the specific project
26
+
*
27
+
* @param projectId the identifier of the project
28
+
* @return a list of user ids of active users that are associated with the project
29
+
*/
30
+
List<String> listActiveUsers(ProjectIdprojectId);
31
+
24
32
/**
25
33
* Lists all users which have a permission on the project
Copy file name to clipboardexpand all lines: projectmanagement-domain/src/main/java/life/qbic/projectmanagement/application/authorization/acl/ProjectAccessServiceImpl.java
0 commit comments