(wip): migrate ttp to mtp
Some checks failed
/ build-web (push) Failing after 3m4s
/ build-desktop (linux) (push) Failing after 3m15s
/ build-mobile (push) Failing after 9m7s
/ release (push) Has been skipped

This commit is contained in:
Alois 2026-07-02 21:05:50 +02:00
commit 20018f09a9
163 changed files with 8342 additions and 2609 deletions

View file

@ -105,7 +105,7 @@ export default function Form() {
await save("user_id", parsed.userId);
await save("private_key", parsed.privateKey);
if (parsed.domain) {
await save("ttp_url", `https://${parsed.domain}/`);
await save("mtp_url", `https://${parsed.domain}/`);
}
location.href = "/";
@ -253,7 +253,7 @@ export default function Form() {
await save("user_id", user.user_id);
await save("private_key", inputParse.data.private_key);
if (domain) {
await save("ttp_url", `https://${domain}/`);
await save("mtp_url", `https://${domain}/`);
}
location.href = "/";
@ -287,7 +287,7 @@ export default function Form() {
await save("private_key", privateKey);
if (domain) {
await save("ttp_url", `https://${domain}/`);
await save("mtp_url", `https://${domain}/`);
}
location.href = "/";