Skip to content

Commit

Permalink
Merge pull request #61 from lime-company/issues/60-ios-bundle-regex
Browse files Browse the repository at this point in the history
Fix #60: Push Credentials Setup - invalid iOS bundle ID
  • Loading branch information
Petr Dvořák authored Nov 20, 2017
2 parents cfbf5c7 + df69134 commit afdbbeb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public class UploadIosCredentialsForm {

@NotNull
@Size(min = 2)
@Pattern(flags = { Pattern.Flag.CASE_INSENSITIVE },regexp = "^[a-z][a-z0-9_]*(\\.[a-z0-9_]+)+[0-9a-z_]$")
@Pattern(flags = { Pattern.Flag.CASE_INSENSITIVE },regexp = "^[a-z][a-z0-9_-]*(\\.[a-z0-9_-]+)+[0-9a-z_-]$")
private String bundle;

@NotNull
Expand Down

0 comments on commit afdbbeb

Please sign in to comment.