An open API service indexing awesome lists of open source software.

https://github.com/jirutka/redmine_agile

Archive of redmine_agile plugin downloaded from https://www.redmineup.com/pages/plugins/agile
https://github.com/jirutka/redmine_agile

redmine redmine-plugin

Last synced: 8 months ago
JSON representation

Archive of redmine_agile plugin downloaded from https://www.redmineup.com/pages/plugins/agile

Awesome Lists containing this project

README

          

= Agile plugin

== Install

* Copy redmine_agile plugin to {RAILS_APP}/plugins on your redmine path
* Run bundle install --without development test RAILS_ENV=production
* Run bundle exec rake redmine:plugins NAME=redmine_agile RAILS_ENV=production

== Uninstall


bundle exec rake redmine:plugins NAME=redmine_agile VERSION=0 RAILS_ENV=production
rm -r plugins/redmine_agile

== Test

bundle exec rake db:drop db:create db:migrate redmine:plugins RAILS_ENV=test
bundle exec rake test TEST="plugins/redmine_agile/test/**/*_test.rb" RAILS_ENV=test

== API

* REST API agile_sprint

API request #index
GET /projests//agile_spints.xml or /projests//agile_spints.json

API request #show
GET /projests//agile_spints/.xml or /projests//agile_spints/.json
Example: GET demo.redmineup.com/projects/agile/agile_sprints/3.json

API request #create
POST /projects//agile_sprints.json?key=
{
"agile_sprint": {
"name": "Sprint 46",
"start_date": "23.07.2022",
"end_date": "24.07.2022"
}
}

API request #update
PUT /projects//agile_sprints/.json?key=
{
"agile_sprint": {
"name": "New name",
}
}

API request #destroy
DELETE /projests//agile_spints/.xml or /projests//agile_spints/.json
Example: DELETE demo.redmineup.com/projects/agile/agile_sprints/67.json