add some basic framework for the featurereport

This commit is contained in:
Jakob Ketterl
2019-07-05 19:30:24 +02:00
parent f5f23e6fbc
commit e61c0dcc12
5 changed files with 33 additions and 9 deletions

5
htdocs/features.js Normal file
View File

@ -0,0 +1,5 @@
$(function(){
$.ajax('/api/features').done(function(data){
$('body').html(JSON.stringify(data));
});
});