Skip to content
Snippets Groups Projects
Commit 7eb10a32 authored by Alex's avatar Alex
Browse files

Correct redirection after clicking on AUC computation button

parent c569b55a
Branches wowa_training_v2
No related tags found
1 merge request!1Include Wowa Training
Pipeline #5670 failed
......@@ -140,11 +140,12 @@ class WowaController extends Controller
public function computeAUCRoc(Wowa $wowa)
{
ProcessAUC::dispatch($wowa, 1, 0);
return view("wowa.show", ["wowa" => $wowa]);
return redirect(action('WowaController@show', ["wowa" => $wowa]));
//return view("wowa.show", ["wowa" => $wowa]);
}
public function computeAUCPR(Wowa $wowa)
{
ProcessAUC::dispatch($wowa, 0, 1);
return view("wowa.show", ["wowa" => $wowa]);
return redirect(action('WowaController@show', ["wowa" => $wowa]));
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment