2021-06-02 23:42:29 +09:30
|
|
|
|
|
|
|
<main role="main" class="inner DAU">
|
|
|
|
<h1 class="DAU-heading">Config</h1>
|
|
|
|
<p class="lead">Discord-auto-upload logs</p>
|
|
|
|
|
2021-06-03 19:36:48 +09:30
|
|
|
<pre id="logs" class="text-left pre-scrollable">
|
|
|
|
</pre>
|
2021-06-02 23:42:29 +09:30
|
|
|
</main>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
$(document).ready(function() {
|
|
|
|
$.ajax({ method: 'get', url: '/rest/logs'})
|
|
|
|
.done(function(data) {
|
|
|
|
console.log(data);
|
2021-06-03 19:36:48 +09:30
|
|
|
$('#logs').text(data);
|
2021-06-02 23:42:29 +09:30
|
|
|
});
|
|
|
|
});
|
|
|
|
</script>
|