-
Notifications
You must be signed in to change notification settings - Fork 4
/
course-settings.js
66 lines (65 loc) · 1.53 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 2023",
siteUrl: "https://ohjelmointi-23.mooc.fi",
githubUrl: "https://github.com/rage/ohjelmointi-23",
subtitle: "Johdatus ohjelmointiin Python-kielellä",
slug: "ohjelmointi-2023",
organizationName: "MOOC",
tmcCourse: "ohjelmointi-2023",
quizzesId: "6540e753-fc9b-42ab-b137-7d0d66608e5e",
tmcOrganization: "mooc",
bannerPath: "banner.svg",
showExerciseDescriptionWhenNotLoggedIn: true,
courseVariants: [
{
tmcOrganization: "haaga-helia",
tmcCourse: "python-2022",
},
{
tmcOrganization: "laurea",
tmcCourse: "laurea-python-syksy-2023"
},
{
tmcOrganization: "hbc",
tmcCourse: "hbc-kyber23AL"
},
{
tmcOrganization: "hbc",
tmcCourse: "hbc-python-KYBER23B"
},
{
tmcOrganization: "hbc",
tmcCourse: "hbc-python-PELI23AL"
},
{
tmcOrganization: "hbc",
tmcCourse: "hbc-python-PELI23B"
},
{
tmcOrganization: "hbc",
tmcCourse: "hbc-python-WEB23A"
},
{
tmcOrganization: "hbc",
tmcCourse: "hbc-python-WEB23B"
},
{
tmcOrganization: "uwasa",
tmcCourse: "python-2023"
},
{
tmcOrganization: "laurea",
tmcCourse: "OhjelmointiPerusSyksy2023PythonKKAH"
},
{
tmcOrganization: "seamk",
tmcCourse: "seamk-ohjelmoinnin-perusteet-1-2024"
},
{
tmcOrganization: "vuolu",
tmcCourse: "vuolun-python-2024"
},
],
}
module.exports = courseSettings