usrspace-browser-addon/src/config.js

31 lines
677 B
JavaScript
Raw Normal View History

2022-12-24 13:08:15 +01:00
export default {
2022-12-25 16:45:34 +01:00
refreshTimeout: 5,
2021-09-22 21:04:32 +02:00
spaceApiUrl: 'https://www.usrspace.at/spaceapi.json',
calenderUrl: 'https://www.usrspace.at/calendar.php',
openColor: '#33cc33',
closedColor: '#cc3333',
eventColor: '#9933cc',
2021-09-22 21:04:32 +02:00
quickLinks: [
{
2023-01-05 04:31:19 +01:00
iconTemplateId: 'template-icon-homepage',
2021-09-22 21:04:32 +02:00
url: 'https://www.usrspace.at/',
2022-12-24 02:31:56 +01:00
text: 'Homepage',
2021-09-22 21:04:32 +02:00
},
{
2023-01-05 04:31:19 +01:00
iconTemplateId: 'template-icon-wiki',
2021-09-22 21:04:32 +02:00
url: 'https://wiki.usrspace.at/',
2022-12-24 02:31:56 +01:00
text: 'Wiki',
2021-09-22 21:04:32 +02:00
},
{
2023-01-05 04:31:19 +01:00
iconTemplateId: 'template-icon-gitea',
2021-09-22 21:04:32 +02:00
url: 'https://gitea.usrspace.at/',
2022-12-24 02:31:56 +01:00
text: 'Gitea',
2021-09-22 21:04:32 +02:00
},
{
2023-01-05 04:31:19 +01:00
iconTemplateId: 'template-icon-nextcloud',
2021-09-22 21:04:32 +02:00
url: 'https://cloud.usrspace.at/',
2022-12-24 02:31:56 +01:00
text: 'Nextcloud',
},
],
2019-01-29 08:03:12 +01:00
};