Skip to content

Commit

Permalink
Updated Report-name Regex
Browse files Browse the repository at this point in the history
  • Loading branch information
thesmallstar authored and vorburger committed Sep 28, 2020
1 parent 9151937 commit 2086332
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
public class ReadReportingServiceImpl implements ReadReportingService {

private static final Logger LOG = LoggerFactory.getLogger(ReadReportingServiceImpl.class);
private static final String REPORT_NAME_REGEX_PATTERN = "^[a-zA-Z][a-zA-Z0-9\\-_\\s]{0,48}[a-zA-Z0-9]$";
private static final String REPORT_NAME_REGEX_PATTERN = "^[a-zA-Z][a-zA-Z0-9\\-_\\s]{0,48}[a-zA-Z0-9\\s](\\([a-zA-Z]*\\))?$";

private final JdbcTemplate jdbcTemplate;
private final DataSource dataSource;
Expand Down

0 comments on commit 2086332

Please sign in to comment.