Skip to content

Commit

Permalink
Add ReportPortalClient.getProjectSettings` method
Browse files Browse the repository at this point in the history
  • Loading branch information
HardNorth committed Feb 20, 2024
1 parent 626c581 commit ec17e97
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
- `TmsLink` and `TmsLinks` annotations, by @HardNorth
- `Issue` and `ExternalIssue` annotations, by @HardNorth
- `rp.bts.project`, `rp.bts.url`, `rp.bts.issue.url`, `rp.bts.issue.fail` properties, which controls these annotations, by @HardNorth
- `ReportPortalClient.getProjectSettings` method, by @HardNorth

## [5.2.5]
### Added
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
import com.epam.ta.reportportal.ws.model.item.ItemCreatedRS;
import com.epam.ta.reportportal.ws.model.launch.*;
import com.epam.ta.reportportal.ws.model.log.SaveLogRQ;
import com.epam.ta.reportportal.ws.model.project.config.ProjectSettingsResource;
import io.reactivex.Maybe;
import okhttp3.MultipartBody;
import retrofit2.http.*;
Expand Down Expand Up @@ -60,4 +61,7 @@ public interface ReportPortalClient {

@GET("v1/{projectName}/item/uuid/{itemUuid}")
Maybe<TestItemResource> getItemByUuid(@Path("itemUuid") String itemUuid);

@GET("v1/{projectName}/settings")
Maybe<ProjectSettingsResource> getProjectSettings();
}

0 comments on commit ec17e97

Please sign in to comment.