Add blog endpoints

This commit is contained in:
marzban-dev
2025-01-30 03:03:14 +03:30
parent d81c12c358
commit 14ae01b6d1
+7 -1
View File
@@ -1,5 +1,9 @@
export const API_ENDPOINTS = {
home : "/home",
home: "/home",
blog: {
articles: "/blogs/all",
article: "/blogs"
},
account: {
profile: "/accounts/profile",
send_otp: "/accounts/send_otp"
@@ -26,6 +30,8 @@ export const API_ENDPOINTS = {
};
export const QUERY_KEYS = {
articles: "articles",
article: "article",
comments: "comments",
home: "home",
chat: "chat",