mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-04-14 11:36:45 +00:00
9 lines
437 B
JavaScript
9 lines
437 B
JavaScript
/*
|
|
Encode the download link for .ics iCal file
|
|
*/
|
|
|
|
module.exports = function(uid, apiToken) {
|
|
var loc, ref;
|
|
loc = (typeof window !== "undefined" && window !== null ? window.location.host : void 0) || (typeof process !== "undefined" && process !== null ? (ref = process.env) != null ? ref.BASE_URL : void 0 : void 0) || '';
|
|
return encodeURIComponent("http://" + loc + "/v1/users/" + uid + "/calendar.ics?apiToken=" + apiToken);
|
|
};
|