use of org.olat.modules.lecture.ui.export.IdentityAuditLogExport in project OpenOLAT by OpenOLAT.
the class ParticipantLecturesOverviewController method doExportLog.
private void doExportLog(UserRequest ureq) {
List<LectureBlockAuditLog> auditLog = lectureService.getAuditLog(assessedIdentity);
IdentityAuditLogExport export = new IdentityAuditLogExport(assessedIdentity, auditLog, authorizedAbsenceEnabled, getTranslator());
ureq.getDispatchResult().setResultingMediaResource(export);
}
use of org.olat.modules.lecture.ui.export.IdentityAuditLogExport in project openolat by klemens.
the class ParticipantLecturesOverviewController method doExportLog.
private void doExportLog(UserRequest ureq) {
List<LectureBlockAuditLog> auditLog = lectureService.getAuditLog(assessedIdentity);
IdentityAuditLogExport export = new IdentityAuditLogExport(assessedIdentity, auditLog, authorizedAbsenceEnabled, getTranslator());
ureq.getDispatchResult().setResultingMediaResource(export);
}
Aggregations