DigitalConsumer.ISS/src/helpers/clientauth-helper.js
2023-07-19 15:25:46 -04:00

14 lines
306 B
JavaScript

import { useMainStore } from '@/store';
export function validateISSClientTag(clientTag) {
const store = useMainStore()
return store.validateClientTag(clientTag)
.then((response) =>
// Success
response
,
(error) =>
// Error
null);
}