File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed
Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99
1010### Added
1111
12- - Added support for updating groups.
12+ - Added support for updating groups with method ` Redmine\Api\Group::update() ` .
13+ - New method ` Redmine\Api\Project::close() ` to close a project.
14+ - New method ` Redmine\Api\Project::reopen() ` to reopen a project.
15+ - New method ` Redmine\Api\Project::archive() ` to archive a project.
16+ - New method ` Redmine\Api\Project::unarchive() ` to unarchive a project.
1317
1418### Changed
1519
Original file line number Diff line number Diff line change @@ -253,6 +253,10 @@ $client->getApi('project')->create([
253253$client->getApi('project')->update($projectId, [
254254 'name' => 'different name',
255255]);
256+ $client->getApi('project')->close($projectId);
257+ $client->getApi('project')->reopen($projectId);
258+ $client->getApi('project')->archive($projectId);
259+ $client->getApi('project')->unarchive($projectId);
256260$client->getApi('project')->remove($projectId);
257261
258262// ----------------------------
You can’t perform that action at this time.
0 commit comments