Remove Roblox as a temp thing i will test when home.

This commit is contained in:
Cooper 2024-09-05 10:37:06 -05:00 committed by GitHub
parent d6390658b7
commit 70ea0c92a8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -25,7 +25,7 @@ enum connectionTypes {
* @example [connectionTypes.Roblox]: "https://www.roblox.com/users/${id}/profile",
*/
const uris = { // name (what shows up on connection on ui), id (an identifier thing)
[connectionTypes.Roblox]: "https://www.roblox.com/users/${id}/profile",
//[connectionTypes.Roblox]: "https://www.roblox.com/users/${id}/profile",
[connectionTypes.Xbox]: "https://www.xbox.com/play/user/${name}",
[connectionTypes.Epic]: "https://store.epicgames.com/u/${id}",
};
@ -35,7 +35,7 @@ const uris = { // name (what shows up on connection on ui), id (an identifier th
* @example [connectionTypes.Epic]: "Epic Games",
*/
const serviceNames = {
[connectionTypes.Roblox]: "Roblox",
//[connectionTypes.Roblox]: "Roblox",
[connectionTypes.Xbox]: "Xbox",
[connectionTypes.Epic]: "Epic Games",
};