feat(gitea): add gitea integration

This commit is contained in:
Rıdvan Akca
2024-04-28 14:42:25 +02:00
parent 788530be45
commit 99025c6a7c
13 changed files with 240 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
const getCurrentUser = async ($) => {
const { data: currentUser } = await $.http.get(`/user`);
return currentUser;
};
export default getCurrentUser;