Skip to content

Commit

Permalink
EPMRPP-92450 || Add more unsupported column types
Browse files Browse the repository at this point in the history
  • Loading branch information
pbortnik committed Jul 19, 2024
1 parent 1261794 commit b68cc10
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,13 @@
* @author <a href="mailto:[email protected]">Pavel Bortnik</a>
*/
public class GetIssueFieldsCommand extends ProjectManagerCommand<List<PostFormField>> {

private static final Logger LOGGER = LoggerFactory.getLogger(GetIssueFieldsCommand.class);

// TODO probably more
private final Set<ColumnType> excludedColumnTypes =
Set.of(ColumnType.item_id, ColumnType.file, ColumnType.last_updated);
Set.of(ColumnType.item_id, ColumnType.file, ColumnType.last_updated, ColumnType.timeline,
ColumnType.subtasks);

private final MondayClientProvider mondayClientProvider;
private final ObjectMapper objectMapper;
Expand Down

0 comments on commit b68cc10

Please sign in to comment.