mirror of
https://github.com/Jellify-Music/App.git
synced 2026-04-28 22:49:39 -05:00
9 lines
393 B
TypeScript
9 lines
393 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!);
|
|
} |