DigitalConsumer.ISS/src/helpers/clientauth-helper.js
2023-08-28 08:59:37 -04:00

13 lines
294 B
JavaScript

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