An error occurred while fetching the assigned milestone of the selected merge_request.
__tests
db.unit.test.js +50 -0
gitlab.unit.test.js +14 -10
public.endpoint.test.js +16 -0
__tests__
method.unit.test.ts +0 -52
classes
project.ts +0 -58
repo.ts +0 -9
user.ts +0 -97
website.ts +0 -9
config
dbconn.ts +0 -39
functions
gitlab.ts +0 -128
helpers.ts +0 -11
methods.ts +0 -215
public/js
generalFunction.js +0 -9
headfootLogout.js +0 -241
registration.js +0 -38
security.js +0 -30
routes/cert
cert.pem +0 -33
cert_idp.pem +0 -1
key.pem +0 -52
src
classes
project.ts +69 -0
repo.ts +9 -0
user.ts +113 -0
website.ts +9 -0
config
config.ts +82 -0
const.ts +8 -6
dbconn.ts +39 -0
mailer.ts +15 -15
controller
dbController.ts +208 -0
gitlabController.ts +127 -0
publicController.ts +281 -0
public
default
logo.png +0 -0
js
generalFunction.js +9 -0
headfoot.js +224 -0
headfootLogout.js +237 -0
registration.js +37 -0
security.js +30 -0
routes
account.ts +592 -0
public.ts +46 -0
views
DE
account
contact.pug +0 -0
forgotPwd.pug +0 -0
home.pug +0 -0
newInformation.pug +0 -0
profile.pug +1 -1
registration.pug +0 -0
reset.pug +0 -0
security.pug +2 -2
services.pug +5 -2
updateInformation.pug +0 -0
verification.pug +0 -0
project
updateProjectOverview.pug +0 -0
404.pug +0 -0
500.pug +0 -0
EN
account
forgotPwd.pug +0 -0
home.pug +0 -0
profile.pug +0 -0
registration.pug +0 -0
reset.pug +0 -0
security.pug +0 -0
services.pug +0 -0
404.pug +0 -0
500.pug +0 -0
app.ts +90 -0
.babelrc +5 -0
.gitignore +1 -1
app.ts +0 -93
jest.config.js +4 -0
package-lock.json +13228 -8549
package.json +18 -7
tsconfig.json +18 -6
__tests/db.unit.test.js
0 → 100644
+ 50
- 0
\ No newline at end of file
__tests/public.endpoint.test.js
0 → 100644
+ 16
- 0
__tests__/method.unit.test.ts deleted
100644 → 0
+ 0
- 52
\ No newline at end of file
classes/project.ts deleted
100644 → 0
+ 0
- 58
constructor(ownerGitlabId:number, name:string, desc:string, id?:number, logo?:string, path?:string) {
\ No newline at end of file