guilhermeh-lima
Results
1
issues of
guilhermeh-lima
Add new export action with postman collection. src/main/java/io/github/newhoo/restkit/toolwindow/tree/ExportApiAction.java ``` @Override public void actionPerformed(@NotNull AnActionEvent e) { Project project = e.getRequiredData(CommonDataKeys.PROJECT); List serviceItems = RestDataKey.SELECTED_SERVICE.getData(e.getDataContext()); if (CollectionUtils.isEmpty(serviceItems)) { e.getPresentation().setVisible(false); return; }...