Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

github.com/i1kondratiuk/kanban

Package Overview
Dependencies
Alerts
File Explorer
Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

github.com/i1kondratiuk/kanban

  • v0.0.0-20200706204052-56f70147f1a2
  • Source
  • Go
  • Socket score

Version published
Created
Source

kanban

API

Prerequisites Docker Compose relies on Docker Engine, so make sure you have Docker Engine installed locally.

  • git clone https://github.com/i1kondratiuk/kanban.git
  • cd kanban
  • git checkout develop
  • Run command: docker-compose up from the project root folder context
  • Server will be running at http://localhost:8080/
/boards
  • GET : gets all boards sorted by their position
  • POST : creates a new board { "name": "name1", "description": "description1" }
/boards/{id}
  • GET: gets a board
  • PUT : updates a board
  • DELETE : deletes a board
/boards/{id}/columns
  • GET : gets all columns
  • POST : creates a new column { "boardId": 1 "name": "name1", "position": 1 }
/columns/{id}
  • GET: gets a column
  • PUT : updates a column
  • DELETE : deletes a column
/columns/{id}/name
  • PUT : renames a column
/columns/{id}/position
  • PUT : moves a column left or right
/columns/{id}/tasks
  • GET : gets all tasks
  • POST : creates a new task { "columnId": 1, "name": "name1", "description": "description1", "priority": 1 }
/tasks/{id}
  • GET: gets a task
  • PUT : updates a task
  • DELETE : deletes a task with all comments related to this task
/tasks/{id}/priority
  • PUT : changes a task priority
/tasks/{id}/status
  • PUT : changes a task status (moves a task across columns)
/tasks/{id}/name
  • PUT : renames a task
/tasks/{id}/description
  • PUT : updates a task description
/tasks/{id}/comments
  • GET : gets all comments sorted by their creation date (from newest to oldest)
  • POST : creates a new comment { "parentId": 1, "comment": { "bodyText": "bodyText1" } }
/comments/{id}
  • PUT : updates a comment
  • DELETE : deletes a comment

FAQs

Package last updated on 06 Jul 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc