refactor: ♻️ Finish rewrite and delete old settings backend

This commit is contained in:
Jesse Wierzbinski 2025-05-01 01:45:46 +02:00
parent 3ce71dd4df
commit 34ce25cc1d
No known key found for this signature in database
50 changed files with 472 additions and 1538 deletions

View file

@ -71,6 +71,7 @@ export const useConfig = () => {
"jessew@social.lysand.org",
"jessew@beta.versia.social",
"jessew@versia.social",
"jessew@vs.cpluspatch.com",
"aprl@social.lysand.org",
"aprl@beta.versia.social",
"aprl@versia.social",

View file

@ -23,6 +23,7 @@ type ApplicationEvents = {
"account:update": Account;
"attachment:view": Attachment;
"identity:change": Identity;
"preferences:open": undefined;
error: {
code: string;
title: string;

View file

@ -1,5 +1,5 @@
import { StorageSerializers } from "@vueuse/core";
import { preferences as prefs } from "~/components/preferences2/preferences.ts";
import { preferences as prefs } from "~/components/preferences/preferences";
type SerializedPreferences = {
[K in keyof typeof prefs]: (typeof prefs)[K]["options"]["defaultValue"];