Skip to content

GitLab

  • Menu
Projects Groups Snippets
    • Loading...
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in
  • G Gruppe_N5
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 1
    • Issues 1
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 0
    • Merge requests 0
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Monitor
    • Monitor
    • Metrics
    • Incidents
  • Packages & Registries
    • Packages & Registries
    • Package Registry
    • Container Registry
    • Infrastructure Registry
  • Analytics
    • Analytics
    • CI/CD
    • Repository
    • Value stream
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • FIDP21N.Heimsoth
  • Gruppe_N5
  • Issues
  • #1

Closed
Open
Created May 15, 2023 by Horn@Horn

Bitte die eingefügte Datei ins Repo kopieren und testen, einiges geht nicht .

Alle ToDos Abfragen

GET http://localhost:8000/todo HTTP/1.1

Alle Projects Abfragen

GET http://localhost:8000/project HTTP/1.1

Alle Priotity Abfragen

GET http://localhost:8000/priority HTTP/1.1

Eine ToDos Abfragen vorhanden

GET http://localhost:8000/todo/38 HTTP/1.1

Ein Projects Abfragen vorhanden

GET http://localhost:8000/project/16 HTTP/1.1

Eine Priotity Abfragen vorhanden

GET http://localhost:8000/priority/13 HTTP/1.1

Eine ToDos Abfragen nicht vorhanden

GET http://localhost:8000/todo/138 HTTP/1.1

Ein Projects Abfragen nicht vorhanden

GET http://localhost:8000/project/116 HTTP/1.1

Eine Priotity Abfragen nicht vorhanden

GET http://localhost:8000/priority/113 HTTP/1.1

Eine ToDo eintragen

POST http://localhost:8000/todo HTTP/1.1 content-type: Application/JSON

{ "title":"etwas machen 1234", "date": "2020-01-01", "proId": 3, "priId": 55

}

Eine ToDo aktualisieren

PUT http://localhost:8000/todo/58 HTTP/1.1 content-type: Application/JSON

{ "title":"etwas machen neu", "proId":8, "date": "2020-01-01" }

Eine ToDo löschen

DELETE http://localhost:8000/todo/54 HTTP/1.1

Eine Priority eintragen

POST http://localhost:8000/priority HTTP/1.1 content-type: Application/JSON

{ "description":"gar nicht wichtig", "value":2 }

Eine Priority aktualisieren

PUT http://localhost:8000/priority/24 HTTP/1.1 content-type: Application/JSON

{ "description":"doch wichtig" }

Eine Priority löschen

DELETE http://localhost:8000/priority/23 HTTP/1.1

Ein Project eintragen

POST http://localhost:8000/project HTTP/1.1 content-type: Application/JSON

{ "name":"Testprojekt" }

Eine Priority aktualisieren

PUT http://localhost:8000/project/18 HTTP/1.1 content-type: Application/JSON

{ "description":"Test-Projekt" }

Eine Priority löschen

DELETE http://localhost:8000/project/18 HTTP/1.1

Eine Priority löschen, die es nicht gibt

DELETE http://localhost:8000/project/118 HTTP/1.1

Eine ToDo eintragen, ungültige Daten

POST http://localhost:8000/todo HTTP/1.1 content-type: Application/JSON

{ "title":1, "date": "2022-01-01", "proId": 3, "priId": "55"

}

Assignee
Assign to
Time tracking