feat(changedetection): add changedetection integration

This commit is contained in:
Rıdvan Akca
2024-05-13 09:57:05 +02:00
parent 9548c93b4c
commit c095d3138b
10 changed files with 122 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
const verifyCredentials = async ($) => {
await $.http.get('/v1/systeminfo');
await $.auth.set({
screenName: $.auth.data.screenName,
apiKey: $.auth.data.apiKey,
});
};
export default verifyCredentials;