Login indication #127

Merged
tonitch merged 5 commits from tonitch/front/loginIndication into master 2024-03-16 14:45:03 +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)
}