15 lines
337 B
JavaScript
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;
|