summaryrefslogtreecommitdiff
path: root/src/common/libs/authenticate.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/libs/authenticate.ts')
-rw-r--r--src/common/libs/authenticate.ts22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/common/libs/authenticate.ts b/src/common/libs/authenticate.ts
new file mode 100644
index 0000000..48d0314
--- /dev/null
+++ b/src/common/libs/authenticate.ts
@@ -0,0 +1,22 @@
+const authenticate = async ({
+ username,
+ password,
+}: {
+ username: string;
+ password: string;
+}) => {
+ const res = await fetch("/api/authenticate", {
+ method: "POST",
+ headers: {
+ "Content-Type": "application/json",
+ },
+ body: JSON.stringify({
+ username,
+ password,
+ }),
+ });
+
+ return res;
+};
+
+export default authenticate;