Skip to content

Commit c7c7e70

Browse files
qqmyerspdurbin
andauthored
Apply suggestions from code review
Co-authored-by: Philip Durbin <[email protected]>
1 parent 71a6e4e commit c7c7e70

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

doc/sphinx-guides/source/api/native-api.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1508,7 +1508,7 @@ The fully expanded example above (without environment variables) looks like this
15081508
15091509
curl -H "X-Dataverse-key:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" -H "Accept: text/csv" "https://demo.dataverse.org/api/dataverses/3/assignments/history"
15101510
1511-
The CSV response has column headers mirroring the json entries. They are internationalized (when internationalization is configured).
1511+
The CSV response has column headers mirroring the JSON entries. They are internationalized (when internationalization is configured).
15121512

15131513
Note: This feature requires the "role-assignment-history" feature flag to be enabled (see :ref:`feature-flags`).
15141514

@@ -4199,7 +4199,7 @@ The fully expanded example above (without environment variables) looks like this
41994199
42004200
curl -H "X-Dataverse-key:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" -H "Accept: text/csv" "https://demo.dataverse.org/api/datasets/3/assignments/history"
42014201
4202-
The CSV response has column headers mirroring the json entries. They are internationalized (when internationalization is configured).
4202+
The CSV response has column headers mirroring the JSON entries. They are internationalized (when internationalization is configured).
42034203
42044204
Note: This feature requires the "role-assignment-history" feature flag to be enabled (see :ref:`feature-flags`).
42054205

src/main/java/edu/harvard/iq/dataverse/DataverseRoleServiceBean.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -469,7 +469,7 @@ public static class RoleAssignmentHistoryConsolidatedEntry {
469469
private Date assignedAt;
470470
private String revokedBy;
471471
private Date revokedAt;
472-
private List<Long> definitionPointIds; // New field
472+
private List<Long> definitionPointIds;
473473

474474
public RoleAssignmentHistoryConsolidatedEntry(String assigneeIdentifier, String roleName, Long definitionPointId) {
475475
this.roleName = roleName;

0 commit comments

Comments
 (0)