lms-sync 1.0.64 → 1.0.65
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -57,6 +57,8 @@ const server = {
|
|
|
57
57
|
|
|
58
58
|
await db.sequelize.query(`DROP FUNCTION IF EXISTS ${db_schema}."pg_temp.testfunc()"`);
|
|
59
59
|
|
|
60
|
+
|
|
61
|
+
|
|
60
62
|
let userDefPayload = {
|
|
61
63
|
email: 'ccci_integrator@gmail.com',
|
|
62
64
|
password: '$2a$12$Q.h3Q9IN6vsIxGBa/EgfOOABeXTcwxt4t9cu4nqAK.nczGRRtZJUS',
|
|
@@ -72,6 +74,8 @@ const server = {
|
|
|
72
74
|
defaults: userDefPayload
|
|
73
75
|
});
|
|
74
76
|
|
|
77
|
+
const userMail = await Users.findOne({ where: { email: 'ccci_integrator@gmail.com' } });
|
|
78
|
+
|
|
75
79
|
let yearDefPayload = {
|
|
76
80
|
from: 1799,
|
|
77
81
|
to: 1800,
|
|
@@ -87,8 +91,6 @@ const server = {
|
|
|
87
91
|
defaults: yearDefPayload
|
|
88
92
|
});
|
|
89
93
|
|
|
90
|
-
const userMail = await Users.findOne({ where: { email: 'ccci_integrator@gmail.com' } });
|
|
91
|
-
|
|
92
94
|
let semesterData = [
|
|
93
95
|
{
|
|
94
96
|
code: '1st Semester',
|