Removed Songwhip (they shut down) and replaced it with TIDAL's universal link system

This commit is contained in:
2024-10-27 21:01:37 +01:00
parent baf719fc60
commit 2ab5a556ab
14 changed files with 28 additions and 100 deletions

View File

@@ -0,0 +1,10 @@
export class SharingService {
/**
* Retrieve the universal link given a regular track link
* @param currentUrl
* @returns
*/
public static getUniversalLink(currentUrl: string): string {
return `${currentUrl}?u`;
}
}