forked from maksrom/javascript-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenCourse.js
More file actions
45 lines (43 loc) · 1.44 KB
/
openCourse.js
File metadata and controls
45 lines (43 loc) · 1.44 KB
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
const mongoose = require('mongoose');
require('courses').CourseGroup;
exports.CourseGroup = [
{
course: '5569b7fc097bf243c1d54e5b',
dateStart: new Date(2015, 5, 18),
dateEnd: new Date(2015, 7, 18),
timeDesc: "пн/чт 21:30 - 23:00 GMT+3",
slug: 'js-20150618',
price: 21000,
participantsLimit: 50,
webinarId: '145468211',
isListed: true,
isOpenForSignup: true,
title: "Курс JavaScript/DOM/интерфейсы (18.06)"
},
{
course: '556deb46a8bc324096206ff1',
dateStart: new Date(2015, 5, 16),
dateEnd: new Date(2015, 6, 14),
timeDesc: "вт/пт 21:30 - 23:00 GMT+3",
slug: 'nodejs-20150616',
price: 13500,
participantsLimit: 30,
webinarId: '150179171',
isListed: true,
isOpenForSignup: true,
title: "Курс Node.JS (16.06)"
},
{
course: '556deb46a8bc324096206ff1',
dateStart: new Date(2015, 5, 30),
dateEnd: new Date(2015, 6, 28),
timeDesc: "вт/пт 19:30 - 21:00 GMT+3",
slug: 'nodejs-20150630',
price: 13500,
participantsLimit: 30,
webinarId: '149647499',
isListed: true,
isOpenForSignup: true,
title: "Курс Node.JS (30.06)"
}
];