createRedmineProject: Create Redmine Project

Description Usage Arguments Value See Also Examples

View source: R/createRedmineProject.R

Description

Creates a new Redmine Project and returns the object relating to the object. If the project already exists, it will return the project object without overwriting it.

Usage

1
2
createRedmineProject(projectName, apiKey, url, identifier = NULL,
  description = NULL)

Arguments

projectName

String representing the project name

apiKey

Your API key

url

URL for your Redmine server

identifier

Project identifier in Redmine. If not provided, will be a cleaned version of your project name

description

Optional description for your project

Value

Reference Class of type RedmineProject

See Also

http://www.redmine.org/projects/redmine/wiki/Rest_Projects#Creating-a-project

Examples

1
2
3
4
5
6
7
## Not run: 
library(RedmineR)
library(config)
cfg = config::get("redmine")
rm = createRedmineProject("Test Project", cfg$api_key, cfg$url, "tpg", "Test project")

## End(Not run)

adamedgley/RedmineR documentation built on May 28, 2019, 12:58 p.m.