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
SAK-32608: Extend CandidateDetailProvider to provide institutional numeric ids (student numbers) for use in Gradebook (sakaiproject#4496)
* SAK-32608: Extend CandidateDetailProvider to provide institutional numeric ids (student numbers) for use in Gradebook
* SAK-32608: fixed issue with category column positioning when student number column is visible
* SAK-32608: added api method to bypass candidate student number visibility permission to facilitate business cases that require the number
Copy file name to clipboardexpand all lines: edu-services/gradebook-service/api/src/java/org/sakaiproject/service/gradebook/shared/GradebookService.java
+6
Original file line number
Diff line number
Diff line change
@@ -583,6 +583,12 @@ public boolean isAssignmentDefined(String gradebookUid, String assignmentTitle)
Copy file name to clipboardexpand all lines: edu-services/gradebook-service/impl/src/java/org/sakaiproject/component/gradebook/GradebookServiceHibernateImpl.java
+6
Original file line number
Diff line number
Diff line change
@@ -1742,6 +1742,12 @@ public boolean currentUserHasViewOwnGradesPerm(String gradebookUid) {
Copy file name to clipboardexpand all lines: edu-services/gradebook-service/impl/src/java/org/sakaiproject/tool/gradebook/facades/sakai2impl/AuthzSakai2Impl.java
+11-1
Original file line number
Diff line number
Diff line change
@@ -53,7 +53,8 @@ public class AuthzSakai2Impl extends AuthzSectionsImpl implements Authz {
Copy file name to clipboardexpand all lines: edu-services/gradebook-service/impl/src/java/org/sakaiproject/tool/gradebook/facades/sections/AuthzSectionsImpl.java
+6
Original file line number
Diff line number
Diff line change
@@ -116,6 +116,12 @@ public boolean isUserAbleToViewOwnGrades(String gradebookUid) {
Copy file name to clipboardexpand all lines: gradebookng/tool/src/java/org/sakaiproject/gradebookng/GradebookNgApplication.properties
+3
Original file line number
Diff line number
Diff line change
@@ -70,6 +70,7 @@ error.concurrentedit=Concurrent edits have been detected. Refresh the tool to se
70
70
71
71
column.header.section = Section
72
72
column.header.students = Students
73
+
column.header.studentNumber = Student Number
73
74
column.header.coursegrade = Course Grade
74
75
75
76
filter.students = Filter students
@@ -246,6 +247,7 @@ importExport.export.advancedOption.description = Select from the options below t
246
247
importExport.export.advancedOption.warning = Customized exports can only be imported back into the system if Student ID and Student Name are retained in the first and second columns and all other formatting conventions are followed.
247
248
importExport.export.advancedOption.exportFormat = Export File Format
248
249
importExport.export.advancedOption.includeStudentName = Student Name
250
+
importExport.export.advancedOption.includeStudentNumber = Student Number
249
251
importExport.export.advancedOption.includePoints = Total Points
250
252
importExport.export.advancedOption.includeLastLogDate = Last Log Date
0 commit comments