You've already forked AstralRinth
forked from didirus/AstralRinth
* initial migration * barebones profiles * Finish profiles * Add back file watcher * UI support progress * Finish most of cache * Fix options page * Fix forge, finish modrinth auth * Accounts, process cache * Run SQLX prepare * Finish * Run lint + actions * Fix version to be compat with windows * fix lint * actually fix lint * actually fix lint again
37 lines
1.0 KiB
JavaScript
37 lines
1.0 KiB
JavaScript
/**
|
|
* All theseus API calls return serialized values (both return values and errors);
|
|
* So, for example, addDefaultInstance creates a blank Profile object, where the Rust struct is serialized,
|
|
* and deserialized into a usable JS object.
|
|
*/
|
|
import { invoke } from '@tauri-apps/api/tauri'
|
|
|
|
export async function login(provider) {
|
|
return await invoke('modrinth_auth_login', { provider })
|
|
}
|
|
|
|
export async function login_pass(username, password, challenge) {
|
|
return await invoke('plugin:mr_auth|login_pass', { username, password, challenge })
|
|
}
|
|
|
|
export async function login_2fa(code, flow) {
|
|
return await invoke('plugin:mr_auth|login_2fa', { code, flow })
|
|
}
|
|
|
|
export async function create_account(username, email, password, challenge, signUpNewsletter) {
|
|
return await invoke('plugin:mr_auth|create_account', {
|
|
username,
|
|
email,
|
|
password,
|
|
challenge,
|
|
signUpNewsletter,
|
|
})
|
|
}
|
|
|
|
export async function logout() {
|
|
return await invoke('plugin:mr_auth|logout')
|
|
}
|
|
|
|
export async function get() {
|
|
return await invoke('plugin:mr_auth|get')
|
|
}
|