Clyde/frontend/src/rest/notifications.js
Anthony Debucquoy f14d41f04d
All checks were successful
Build and test backend / Build-backend (pull_request) Successful in 1m22s
Build and test FrontEnd / Build-frontend (pull_request) Successful in 24s
je sais vraiment pas ce que j'ai ajouté mais amélioration jt'e jure
2024-04-21 17:42:29 +02:00

13 lines
343 B
JavaScript

import { ref } from 'vue'
import { restGet, restPost } from '@/rest/restConsumer.js'
export const notifications = ref([]);
export function fetchNotifications(){
restGet("/notifications").then( e => notifications.value = e );
}
export function archiveNotification(id){
restPost("/notifications/" + id).then( e => fetchNotifications() );
}