mirror of
https://github.com/Jellify-Music/App.git
synced 2026-02-09 03:58:33 -06:00
9 lines
399 B
TypeScript
9 lines
399 B
TypeScript
import { fetchServerUrl } from "../../queries/functions/storage";
|
|
import { JellyfinCredentials } from "../../types/jellyfin-credentials";
|
|
import * as Keychain from "react-native-keychain"
|
|
|
|
|
|
|
|
export const mutateServerCredentials = async (credentials: JellyfinCredentials) => {
|
|
return Keychain.setInternetCredentials(await fetchServerUrl, credentials.username, credentials.accessToken!);
|
|
} |