DigitalConsumer.ISS/src/helpers/clientauth-helper.js
2023-08-16 07:35:25 -04:00

15 lines
337 B
JavaScript

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