feat: DND for Articles

This commit is contained in:
2025-06-04 22:01:20 +03:00
parent 89488d9921
commit 1973ff4304
5 changed files with 477 additions and 194 deletions

View File

@@ -586,6 +586,12 @@ class CreateSightStore {
throw error;
}
};
updateRightArticles = async (articles: any[], language: Language) => {
runInAction(() => {
this.sight[language].right = articles;
});
};
}
export const createSightStore = new CreateSightStore();