Kaydet (Commit) c8dc67d0 authored tarafından mertcelen's avatar mertcelen

Delete test routes

üst e6e87a7a
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script src="https://cdn.jsdelivr.net/npm/ejs@3.0.1/ejs.min.js" integrity="sha256-UBBPCOEPxc2jDuQMgYvzemO9GqrRd0UkYHVwl78VbqI=" crossorigin="anonymous"></script>
</head>
<script>
function renderEjs(){
let people = ['geddy', 'neil', 'alex'],
html = ejs.render('<%= people.join(", "); %>', {people: people});
document.getElementById('mainData').innerHTML = html
}
</script>
<body>
<button onclick="renderEjs()">Render</button>
<pre id="mainData">
</pre>
</body>
</html>
\ No newline at end of file
......@@ -154,8 +154,4 @@ Route::post('/upload_info', function () {
shell_exec("sudo chmod 770 " . $info['file_path']);
}
return $info;
})->middleware(['auth', 'permissions']);
Route::get('/ejs', function () {
$certificate = Spatie\SslCertificate\SslCertificate::createForHostName();
});
})->middleware(['auth', 'permissions']);
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment