Skip to content

Commit

Permalink
Merge pull request #2128 from reportportal/EPMRPP-96338
Browse files Browse the repository at this point in the history
EPMRPP-96338 || Rewrite autogen api docs title and summary
  • Loading branch information
pbortnik authored Dec 16, 2024
2 parents 525904a + 624ee3b commit 758b6c7
Show file tree
Hide file tree
Showing 21 changed files with 21 additions and 21 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
*/
@RestController
@RequestMapping("/v2/{projectName}/launch")
@Tag(name = "launch-async-controller", description = "Launch Async Controller. Puts events to the queues")
@Tag(name = "Launch Async", description = "Launches Async API collection")
public class LaunchAsyncController {

private final ProjectExtractor projectExtractor;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
@RestController
@RequestMapping("/v2/{projectName}/log")
@PreAuthorize(ASSIGNED_TO_PROJECT)
@Tag(name = "log-async-controller", description = "Log Async Controller")
@Tag(name = "Log Async", description = "Logs Async API collection")
public class LogAsyncController {

private final ProjectExtractor projectExtractor;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
@RestController
@RequestMapping("/v2/{projectName}/item")
@PreAuthorize(ASSIGNED_TO_PROJECT)
@Tag(name = "test-item-async-controller", description = "Test Item Async Controller")
@Tag(name = "Test Item Async", description = "Test Items Async API collection")
public class TestItemAsyncController {

private final ProjectExtractor projectExtractor;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
@RequestMapping("/v1/{projectName}/activity")
@Transactional(readOnly = true)
@PreAuthorize(ASSIGNED_TO_PROJECT)
@Tag(name = "activity-controller", description = "Activity Controller")
@Tag(name = "Activity", description = "Activities API collection")
public class ActivityController {

private final ActivityHandler activityHandler;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
@Validated
@RestController
@RequestMapping("/v1/activities")
@Tag(name = "activity-event-controller", description = "Activity Event Controller")
@Tag(name = "Activity Event", description = "Activity Events API collection")
public class ActivityEventController {

private final ActivityEventHandler activityEventHandler;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
*/
@RestController
@RequestMapping("/v1/bts")
@Tag(name = "bug-tracking-system-controller", description = "Bug Tracking System Controller")
@Tag(name = "Bug Tracking System", description = "Bug Tracking Systems API collection")
public class BugTrackingSystemController {

private final ProjectExtractor projectExtractor;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
@RestController
@PreAuthorize(ASSIGNED_TO_PROJECT)
@RequestMapping("/v1/{projectName}/dashboard")
@Tag(name = "dashboard-controller", description = "Dashboard Controller")
@Tag(name = "Dashboard", description = "Dashboards API collection")
public class DashboardController {

private final ProjectExtractor projectExtractor;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
*/
@RestController
@RequestMapping("/v1/data")
@Tag(name = "file-storage-controller", description = "File Storage Controller")
@Tag(name = "File Storage", description = "Files Storage API collection")
public class FileStorageController {

private final ProjectExtractor projectExtractor;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
*/
@RestController
@RequestMapping(value = "/v1/integration")
@Tag(name = "integration-controller", description = "Integration Controller")
@Tag(name = "Integration", description = "Integrations API collection")
public class IntegrationController {

private final ProjectExtractor projectExtractor;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@
*/
@RestController
@RequestMapping("/v1/{projectName}/launch")
@Tag(name = "launch-controller", description = "Launch Controller")
@Tag(name = "Launch", description = "Launches API collection")
public class LaunchController {

private final ProjectExtractor projectExtractor;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
@RestController
@RequestMapping("/v1/{projectName}/log")
@PreAuthorize(ASSIGNED_TO_PROJECT)
@Tag(name = "log-controller", description = "Log Controller")
@Tag(name = "Log", description = "Logs API collection")
public class LogController {

private final ProjectExtractor projectExtractor;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
*/
@RestController
@RequestMapping("/v1/onboarding")
@Tag(name = "onboarding-controller", description = "Onboarding Controller")
@Tag(name = "Onboarding", description = "Onboardings API collection")
public class OnboardingController {

private final OnboardingService onboardingService;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
@RestController
@RequestMapping(value = "/v1/plugin")
@RequiredArgsConstructor
@Tag(name = "plugin-controller", description = "Plugin Controller")
@Tag(name = "Plugin", description = "Plugins API collection")
public class PluginController {

private final CreatePluginHandler createPluginHandler;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
*/
@RestController
@RequestMapping(value = "/v1/plugin/public")
@Tag(name = "plugin-public-controller", description = "Plugin Public Controller")
@Tag(name = "Plugin Public", description = "Plugins Public API collection")
public class PluginPublicController {

private final PluginFilesProvider pluginPublicFilesProvider;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
*/
@RestController
@RequestMapping("/v1/project")
@Tag(name = "project-controller", description = "Project Controller")
@Tag(name = "Project", description = "Projects API collection")
public class ProjectController {

private final ProjectExtractor projectExtractor;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
@RestController
@RequestMapping("/v1/{projectName}/settings")
@PreAuthorize(ASSIGNED_TO_PROJECT)
@Tag(name = "project-settings-controller", description = "Project Settings Controller")
@Tag(name = "Project Settings", description = "Project Settings API collection")
public class ProjectSettingsController {

private final CreateProjectSettingsHandler createHandler;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
@RestController
@RequestMapping("/v1/settings")
@PreAuthorize(ADMIN_ONLY)
@Tag(name = "settings-controller", description = "Settings Controller")
@Tag(name = "Settings", description = "Settings API collection")
public class SettingsController {

private final ServerAdminHandler serverHandler;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@
@RestController
@RequestMapping("/v1/{projectName}/item")
@PreAuthorize(ASSIGNED_TO_PROJECT)
@Tag(name = "test-item-controller", description = "Test Item Controller")
@Tag(name = "Test Item", description = "Test Items API collection")
@RequiredArgsConstructor
public class TestItemController {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@

@RestController
@RequestMapping("/users")
@Tag(name = "user-controller", description = "User Controller")
@Tag(name = "User", description = "Users API collection")
public class UserController {

private final CreateUserHandler createUserMessageHandler;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
@RestController
@PreAuthorize(ASSIGNED_TO_PROJECT)
@RequestMapping("/v1/{projectName}/filter")
@Tag(name = "user-filter-controller", description = "User Filter Controller")
@Tag(name = "User Filter", description = "User Filters API collection")
public class UserFilterController {

private final ProjectExtractor projectExtractor;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
@RestController
@PreAuthorize(ASSIGNED_TO_PROJECT)
@RequestMapping("/v1/{projectName}/widget")
@Tag(name = "widget-controller", description = "Widget Controller")
@Tag(name = "Widget", description = "Widgets API collection")
public class WidgetController {

private final ProjectExtractor projectExtractor;
Expand Down

0 comments on commit 758b6c7

Please sign in to comment.