An error occurred while fetching the assigned milestone of the selected merge_request.
config
config.js +49 -17
routes
dbconn.js +1 -1
mailer.js +1 -1
methods.js +89 -47
routes-account.js +298 -97
routes-project.js +0 -362
views
DE
account
contact.pug +2 -23
forgotPwd.pug +3 -23
home.pug +63 -31
profile.pug +13 -11
registration.pug +9 -25
reset.pug +3 -23
security.pug +8 -7
services.pug +12 -10
verification.pug +36 -0
project
addProjectOverview.pug +0 -143
landingpage.html +0 -68
landingpage.pug +0 -47
mailinglists.pug +0 -99
project-simplified.pug +0 -51
project.html +0 -220
projectOverview.pug +0 -162
projects.pug +0 -114
videoconferences.pug +0 -67
404.pug +1 -1
500.pug +1 -1
EN
account
forgotPwd.pug +2 -2
home.pug +1 -1
profile.pug +1 -1
registration.pug +1 -1
reset.pug +2 -2
security.pug +1 -1
services.pug +1 -1
project
addProjectOverview.pug +0 -115
mailinglists.pug +0 -61
projects.pug +0 -117
error.pug +0 -6
layout.pug +0 -12
.gitlab-ci.yml +21 -2
app.js +5 -2
package-lock.json +156 -9
package.json +5 -4
+ 49
- 17
@@ -2,37 +2,69 @@ module.exports = {
@@ -2,37 +2,69 @@ module.exports = {
entryPoint: process.env.SAML_ENTRY_POINT || 'https://m4lab.hft-stuttgart.de/idp/saml2/idp/SSOService.php',
\ No newline at end of file
+ 1
- 1
+ 1
- 1
+ 89
- 47
@@ -42,14 +42,26 @@ var methods = {
@@ -42,14 +42,26 @@ var methods = {
@@ -57,7 +69,20 @@ var methods = {
@@ -57,7 +69,20 @@ var methods = {
dbconn.user.query('SELECT salutation, title, firstname, lastname, industry, organisation, speciality FROM user WHERE email = "' +email+'"', function (err, rows, fields) {
@@ -70,7 +95,7 @@ var methods = {
@@ -70,7 +95,7 @@ var methods = {
dbconn.user.query('SELECT id, email FROM user WHERE email = "' +email+'"', function (err, rows, fields) {
@@ -84,7 +109,7 @@ var methods = {
@@ -84,7 +109,7 @@ var methods = {
dbconn.user.query('SELECT t1.user_id, t2.email FROM userdb.credential AS t1 INNER JOIN userdb.user AS t2 ON t1.user_id = t2.id AND t1.resetPasswordToken = "'
@@ -100,75 +125,92 @@ var methods = {
@@ -100,75 +125,92 @@ var methods = {
dbconn.user.query('UPDATE user SET ? WHERE email = "' +userData.email+'"', userData, function (err, rows, fields) {
dbconn.user.query('UPDATE credential SET ? WHERE user_id = ' +data.user_id, data, function (err, rows, fields) {
dbconn.user.query('SELECT project_id, role_id FROM user_project_role WHERE user_id = "' +userId+'"', function (err, rows, fields) {
dbconn.project.query('CALL GetProjectInformationByProjectID(' + projectId+ ')', function (err, rows, fields){
+ 298
- 97
Files with large changes are collapsed by default.