SECURITY: Limit length of edit reason column

This commit is contained in:
Penar Musaraj
2023-07-28 12:53:49 +01:00
committed by David Taylor
parent 62a609ea2d
commit dcc825bda5
2 changed files with 2 additions and 0 deletions

View File

@@ -61,6 +61,7 @@ RSpec.describe Post do
end
it { is_expected.to validate_presence_of :raw }
it { is_expected.to validate_length_of(:edit_reason).is_at_most(1000) }
# Min/max body lengths, respecting padding
it { is_expected.not_to allow_value("x").for(:raw) }