Disable other task buttons

These tasks are not currently reachable through the API. Given that I
don't yet fully grasp what they do, that might not be a bad thing.
This commit is contained in:
Will Nilges 2022-09-10 10:32:21 -04:00
parent cd6bdba409
commit 7c4bcb2497
2 changed files with 8 additions and 5 deletions

View file

@ -627,12 +627,14 @@ $(".add-ignored-pool").click(function(){
}); });
}); });
// TODO: Move these tasks so they're callable via JS?
/*
$("#generate-pool-cache-task-button").click(function(){ $("#generate-pool-cache-task-button").click(function(){
}); });
$("#process-expiring-vms-task-button").click(function(){ $("#process-expiring-vms-task-button").click(function(){
}); });
*/
$("#cleanup-vnc-task-button").click(function(){ $("#cleanup-vnc-task-button").click(function(){
const vncCleanupToken = $(this).data('vnc_cleanup_token'); const vncCleanupToken = $(this).data('vnc_cleanup_token');

View file

@ -114,10 +114,11 @@
</div> </div>
</div> </div>
<div class="panel-body"> <div class="panel-body">
<!--TODO: Expose these functions through Flask so that they can be called with the API-->
<!--
<button class="btn btn-secondary" id="generate-pool-cache-task-button" name="generate-pool-cache-task-button" >GENERATE POOL CACHE</button> <button class="btn btn-secondary" id="generate-pool-cache-task-button" name="generate-pool-cache-task-button" >GENERATE POOL CACHE</button>
<button class="btn btn-secondary" id="process-expiring-vms-task-button" name="process-expiring-vms-task-button">PROCESS EXPIRING VMS</button> <button class="btn btn-secondary" id="process-expiring-vms-task-button" name="process-expiring-vms-task-button">PROCESS EXPIRING VMS</button>
-->
<button class="btn btn-secondary" id="cleanup-vnc-task-button" name="cleanup-vnc-task-button" data-vnc_cleanup_token="{{ vnc_cleanup_token }}" data-server_name="{{ server_name }}">CLEANUP VNC SESSIONS</button> <button class="btn btn-secondary" id="cleanup-vnc-task-button" name="cleanup-vnc-task-button" data-vnc_cleanup_token="{{ vnc_cleanup_token }}" data-server_name="{{ server_name }}">CLEANUP VNC SESSIONS</button>
</div> </div>
</div> </div>