unstable sharing refactor

This commit is contained in:
2026-03-19 16:15:47 -05:00
parent 4259649fec
commit 37004e4b4a
18 changed files with 1304 additions and 1248 deletions
+5 -5
View File
@@ -1,6 +1,6 @@
import PocketBase from 'pocketbase';
import PocketBase, { LocalAuthStore } from 'pocketbase';
import { AUTH_STORE_KEY, POCKETBASE_URL } from "@/lib/app-config";
import { CONTEXTS_COLLECTION, NOTES_COLLECTION, TASGRID_COLLECTION } from "@/lib/constants";
export const pb = new PocketBase('https://pocketbase.ccllc.pro');
export const TASGRID_COLLECTION = 'TasGrid';
export const TAGS_COLLECTION = 'TasGrid_Tags';
export const pb = new PocketBase(POCKETBASE_URL, new LocalAuthStore(AUTH_STORE_KEY));
export { TASGRID_COLLECTION, CONTEXTS_COLLECTION, NOTES_COLLECTION };