-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcourse-settings.js
75 lines (73 loc) · 1.81 KB
/
course-settings.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
const courseSettings = {
language: "fi",
name: "Ohjelmoinnin perusteet ja jatkokurssi 2025",
siteUrl: "https://ohjelmointi-25.mooc.fi",
githubUrl: "https://github.com/rage/ohjelmointi-25",
subtitle: "Johdatus ohjelmointiin Python-kielellä",
slug: "ohjelmointi-2025",
organizationName: "MOOC",
tmcCourse: "ohjelmointi-2025",
quizzesId: "0aa44e16-90ae-41f8-be9c-4f08a29bc8cf",
tmcOrganization: "mooc",
bannerPath: "banner.svg",
showExerciseDescriptionWhenNotLoggedIn: true,
courseVariants: [
{
tmcOrganization: "centria",
tmcCourse: "centria-python-2025"
},
{
tmcOrganization: "kinnulanlukio",
tmcCourse: "kinnulanlukio-python-ohjelmointi-2025"
},
{
tmcOrganization: "laurea",
tmcCourse: "python-2025-laurea-stenberg"
},
// {
// tmcOrganization: "laurea",
// tmcCourse: "python-2024-stenberg"
// },
// {
// tmcOrganization: "hellu",
// tmcCourse: "HelluTTK01"
// },
// {
// tmcOrganization: "hbc",
// tmcCourse: "python-KYBER24AL"
// },
// {
// tmcOrganization: "hbc",
// tmcCourse: "python-KYBER24B"
// },
// {
// tmcOrganization: "hbc",
// tmcCourse: "python-PELI24AL"
// },
// {
// tmcOrganization: "hbc",
// tmcCourse: "python-PELI24B"
// },
// {
// tmcOrganization: "hbc",
// tmcCourse: "python-WEB24A"
// },
// {
// tmcOrganization: "hbc",
// tmcCourse: "python-WEB24B"
// },
// {
// tmcOrganization: "laurea",
// tmcCourse: "python_Grotenfelt_autumn_2024"
// },
// {
// tmcOrganization: "uwasa",
// tmcCourse: "python-2024"
// },
// {
// tmcOrganization: "ksyk",
// tmcCourse: "python-2024"
// },
],
}
module.exports = courseSettings