Skip to content
GitLab
    • Explore Projects Groups Snippets
Projects Groups Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
  • Sign in
  • User Account User Account
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
    • Locked Files
  • Issues 0
    • Issues 0
    • List
    • Boards
    • Service Desk
    • Milestones
    • Iterations
    • Requirements
  • Merge requests 0
    • Merge requests 0
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
    • Test Cases
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Packages and registries
    • Packages and registries
    • Package Registry
    • Infrastructure Registry
  • Monitor
    • Monitor
    • Metrics
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Code review
    • Insights
    • Issue
    • Repository
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • m4lab_tv1
  • User AccountUser Account
  • Merge requests
  • !102
An error occurred while fetching the assigned milestone of the selected merge_request.

updating yml config

  • Review changes

  • Download
  • Email patches
  • Plain diff
Merged Wolfgang Knopki requested to merge prepare_prod into master 3 years ago
  • Overview 0
  • Commits 10
  • Pipelines 0
  • Changes 32

(cherry picked from commit 7afdce02)

  • Wolfgang Knopki @knopkiwg assigned to @knopkiwg 3 years ago

    assigned to @knopkiwg

  • Wolfgang Knopki @knopkiwg mentioned in commit f287ea2c 3 years ago

    mentioned in commit f287ea2c

  • Wolfgang Knopki @knopkiwg merged 3 years ago

    merged

  • Wolfgang Knopki @knopkiwg mentioned in commit af66b069 3 years ago

    mentioned in commit af66b069

  • Wolfgang Knopki @knopkiwg mentioned in merge request !104 (merged) 3 years ago

    mentioned in merge request !104 (merged)

  • Loading
  • Loading
  • Loading
  • Loading
  • You're only seeing other activity in the feed. To add a comment, switch to one of the following options.
Please register or sign in to reply
Compare
  • master (base)

and
  • latest version
    89a34bae
    10 commits, 3 years ago

32 files
+ 2094
- 1145

    Preferences

    File browser
    Compare changes
__te‎sts__‎
gitlab.un‎it.test.ts‎ +1 -1
method.un‎it.test.ts‎ +2 -2
cla‎sses‎
proje‎ct.ts‎ +16 -9
rep‎o.js‎ +0 -9
rep‎o.ts‎ +9 -0
use‎r.ts‎ +97 -0
websi‎te.js‎ +0 -9
websi‎te.ts‎ +9 -0
con‎fig‎
conf‎ig.ts‎ +4 -4
cons‎t.ts‎ +1 -1
dbco‎nn.ts‎ +5 -5
dbcon‎n2.ts‎ +5 -5
mail‎er.js‎ +0 -39
mail‎er.ts‎ +40 -0
func‎tions‎
gitl‎ab.ts‎ +47 -67
helpe‎rs.ts‎ +2 -2
metho‎ds.ts‎ +58 -69
public/js/jq‎uery-ui/i18n‎
datepick‎er-de.js‎ +0 -37
rou‎tes‎
accou‎nt.ts‎ +596 -0
publ‎ic.js‎ +0 -296
publ‎ic.ts‎ +303 -0
view‎s/DE‎
acc‎ount‎
newInform‎ation.pug‎ +1 -1
updateInfo‎rmation.pug‎ +9 -9
404‎.pug‎ +2 -2
500‎.pug‎ +2 -2
layou‎t.pug‎ +0 -12
.giti‎gnore‎ +2 -2
.gitlab‎-ci.yml‎ +13 -5
app‎.ts‎ +93 -0
package-‎lock.json‎ +740 -550
packag‎e.json‎ +26 -7
tsconf‎ig.json‎ +11 -0
__tests__/gitlab.unit.test.js → __tests__/gitlab.unit.test.ts
+ 1
- 1
  • View file @ 89a34bae

  • Edit in single-file editor

  • Open in Web IDE


const gitlab = require('../functions/gitlab')
import gitlab from '../functions/gitlab'
//const axios = require('axios')
//jest.mock('axios')
__tests__/method.unit.test.js → __tests__/method.unit.test.ts
+ 2
- 2
  • View file @ 89a34bae

  • Edit in single-file editor

  • Open in Web IDE


const methods = require('../functions/methods')
import methods from '../functions/methods'
describe("DB methohds test", () => {
@@ -49,4 +49,4 @@ describe("DB methohds test", () => {
expect(user).toBeNull()
})
})
})
\ No newline at end of file
classes/project.js → classes/project.ts
+ 16
- 9
  • View file @ 89a34bae

  • Edit in single-file editor

  • Open in Web IDE


class Project {
constructor(ownerGitlabId, id, name, desc, logo, path) {
ownerGitlabId:number
name:string
desc:string
id?:number
logo?:string
path?:string
constructor(ownerGitlabId:number, name:string, desc:string, id?:number, logo?:string, path?:string) {
this.ownerGitlabId = ownerGitlabId
this.id = id
this.name = name
this.desc = desc
this.id = id
this.logo = logo
this.path = path
}
@@ -28,24 +35,24 @@ class Project {
return this.path
}
// setter
setOwnerGitlabId(newOwnerGitlabId){
setOwnerGitlabId(newOwnerGitlabId:number){
this.ownerGitlabId = newOwnerGitlabId
}
setId(newId) {
setId(newId:number) {
this.id = newId
}
setName(newName) {
setName(newName:string) {
this.name = newName
}
setDesc(newDesc) {
setDesc(newDesc:string) {
this.desc = newDesc
}
setLogo(newLogoUrl) {
setLogo(newLogoUrl:string) {
this.logo = newLogoUrl
}
setPath(newPath) {
setPath(newPath:string) {
this.path = newPath
}
}
module.exports = Project
\ No newline at end of file
export = Project
\ No newline at end of file
classes/repo.js deleted 100644 → 0
+ 0
- 9
  • View file @ fe1cf482

const Project = require("./project");
class Repo extends Project {
constructor(ownerGitlabId, id, name, desc, logo, path) {
super(ownerGitlabId, id, name, desc, logo, path)
}
}
module.exports = Repo
\ No newline at end of file
classes/repo.ts 0 → 100644
+ 9
- 0
  • View file @ 89a34bae

  • Edit in single-file editor

  • Open in Web IDE

import Project from "./project"
class Repo extends Project {
constructor(ownerGitlabId:number, name:string, desc:string, id?:number, logo?:string, path?:string) {
super(ownerGitlabId, name, desc, id, logo, path)
}
}
export = Repo
\ No newline at end of file
Assignee
Wolfgang Knopki's avatar
Wolfgang Knopki
Assign to
0 Reviewers
None
Request review from
Labels
0
None
0
None
    Assign labels
  • Manage project labels

Milestone
No milestone
None
None
Time tracking
No estimate or time spent
Lock merge request
Unlocked
0
0 participants
Reference:
Source branch: prepare_prod

Menu

Explore Projects Groups Snippets

Dies ist die Gitlab-Instanz des Transferportals der Hochschule für Technik Stuttgart. Hier geht es zurück zum Portal