Skip to content

Commit

Permalink
fix: reducde WireGuardPeerAllowedIP::$mask minimum to 0 #595
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredhendrickson13 committed Nov 6, 2024
1 parent 485af21 commit 655a07c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class WireGuardPeerAllowedIP extends Model {
);
$this->mask = new IntegerField(
required: true,
minimum: 1,
minimum: 0,
maximum: 128,
help_text: 'The subnet mask for this peer IP.',
);
Expand Down

0 comments on commit 655a07c

Please sign in to comment.