-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcourse-settings.js
66 lines (65 loc) · 1.48 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
const courseSettings = {
language: "fi",
name: "Ohjelmoinnin perusteet ja jatkokurssi 2024",
siteUrl: "https://ohjelmointi-24.mooc.fi",
githubUrl: "https://github.com/rage/ohjelmointi-24",
subtitle: "Johdatus ohjelmointiin Python-kielellä",
slug: "ohjelmointi-2024",
organizationName: "MOOC",
tmcCourse: "ohjelmointi-2024",
quizzesId: "b5e48702-a5b9-41e1-b3d9-9b92e8346df4",
tmcOrganization: "mooc",
bannerPath: "banner.svg",
showExerciseDescriptionWhenNotLoggedIn: true,
courseVariants: [
{
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"
},
{
tmcOrganization: "centria",
tmcCourse: "centria-python-2025"
},
],
}
module.exports = courseSettings