Skip to content

Commit

Permalink
remove mandatory valid session requirement when fetching task history (
Browse files Browse the repository at this point in the history
  • Loading branch information
yans80 authored Feb 20, 2023
1 parent 3edd989 commit 4293b33
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class TaskHistoryController @Inject() (
* @return
*/
def getTaskHistoryLog(taskId: Long): Action[AnyContent] = Action.async { implicit request =>
this.sessionManager.authenticatedRequest { implicit user =>
this.sessionManager.userAwareRequest { implicit user =>
Ok(_insertExtraJSON(service.getTaskHistoryLog(taskId)))
}
}
Expand Down

0 comments on commit 4293b33

Please sign in to comment.