Git Product home page Git Product logo

to-do's Introduction

ERD

TODO ERD.png

API

기능 Method URL REQUEST RESPONSE
회원가입 POST /user/signup {"username: "username", "password": "password"} {"message": "회원가입성공", "httpStatus": "OK"}
로그인 POST /user/login {”username”: “username”,”password”: “password”} {"success": "로그인 성공","status": 200}
일정 일부 조회 GET /todo/{todoId} {"title": "title123","content": "content123","username": "1234","createAt": "2024-02-06T13:50:36.562537","completed": false}
일정 전체 조회 GET /todo {"title": "title123","content": "content123","username": "1234","createAt": "2024-02-06T13:50:36.562537","completed": false}
일정 등록 POST /todo/create {”title”: ”title”,”content”: “content”} {”title”: ”title”,”content”: “content”}
일정 수정 PATCH /todo/{todoId} {”title”: ”title”,”content”: “content”} {"title": "title","content": "1234","username": "1234","createAt": "2024-02-06T13:47:49.483162","completed": false}
일정 완료 PATCH /todo/{todoId}/complete {"title": "title","content": "1234","username": "1234","createAt": "2024-02-06T13:47:49.483162","completed": true}
댓글 조회
댓글 등록 POST /todo/{todoId}/comment {”comment”: comment”} {"comment": "반가워요^^"}
댓글 수정 PATCH /todo/{todoId}/comment/{commentId} {”comment”: comment”} {"comment": "반가워요^^(라고할뻔)"}
댓글 삭제 DELETE /todo/{todoId}/comment/{commentId} {"message": "삭제가 완료되었습니다.","httpStatus": "OK"}

to-do's People

Contributors

pokly0908 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.