WIP: Page & /apps endpoints api stub #113

Manually merged
tonitch merged 4 commits from tonitch/front/pagesAPI into master 2024-03-16 14:45:06 +01:00
Showing only changes of commit 160cfb0bbf - Show all commits

View File

@ -0,0 +1,9 @@
import { restGet } from './restConsumer.js'
export async function appList(){
return restGet("/apps")
}
export async function checkPage(page){
return restGet("/apps/" + page)
}