mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-14 17:50:13 +00:00
Merge branch 'main' of github/Draconizations/pk-webs-svelte into feat/dashboard
This commit is contained in:
commit
8fa371bcc8
56 changed files with 6420 additions and 0 deletions
25
dashboard/src/stores.ts
Normal file
25
dashboard/src/stores.ts
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
import { writable } from 'svelte/store';
|
||||
|
||||
export const loggedIn = writable(false);
|
||||
|
||||
/* export const user = writable({
|
||||
id: null,
|
||||
uuid: null,
|
||||
name: null,
|
||||
description: null,
|
||||
tag: null,
|
||||
avatar_url: null,
|
||||
banner: null,
|
||||
timezone: null,
|
||||
created: null,
|
||||
color: null,
|
||||
privacy: {
|
||||
description_privacy: null,
|
||||
member_list_privacy: null,
|
||||
front_privacy: null,
|
||||
front_history_privacy: null,
|
||||
group_list_privacy: null
|
||||
}
|
||||
}); */
|
||||
|
||||
export const currentUser = writable(null);
|
||||
Loading…
Add table
Add a link
Reference in a new issue