usrspace-browser-addon/src/config.js

41 lines
793 B
JavaScript
Raw Permalink Normal View History

2023-01-06 02:02:50 +01:00
export const REFRESH_TIMEOUT = 5;
export const API_URLS = {
spaceApi: 'https://www.usrspace.at/spaceapi.json',
calender: 'https://www.usrspace.at/calendar.php',
2019-01-29 08:03:12 +01:00
};
2023-01-06 02:02:50 +01:00
export const BADGE_COLORS = {
open: '#33cc33',
closed: '#cc3333',
event: '#9933cc',
};
export const QUICK_LINKS = [
{
iconTemplateId: 'template-icon-homepage',
url: 'https://www.usrspace.at/',
text: 'Homepage',
},
{
iconTemplateId: 'template-icon-wiki',
url: 'https://wiki.usrspace.at/',
text: 'Wiki',
},
{
2023-01-22 11:38:44 +01:00
iconTemplateId: 'template-icon-git',
2023-01-06 02:02:50 +01:00
url: 'https://gitea.usrspace.at/',
2023-01-22 11:38:44 +01:00
text: 'Git',
2023-01-06 02:02:50 +01:00
},
{
2023-01-22 11:38:44 +01:00
iconTemplateId: 'template-icon-cloud',
2023-01-06 02:02:50 +01:00
url: 'https://cloud.usrspace.at/',
2023-01-22 11:38:44 +01:00
text: 'Cloud',
},
{
iconTemplateId: 'template-icon-pad',
url: 'https://pads.usrspace.at/',
text: 'Pad',
2023-01-06 02:02:50 +01:00
},
];