mirror of
https://github.com/mastodon/mastodon.git
synced 2025-01-08 19:35:11 +01:00
Add severity validation
This commit is contained in:
parent
8770905186
commit
f4b733d454
@ -21,7 +21,7 @@ class DomainBlock < ApplicationRecord
|
|||||||
include DomainNormalizable
|
include DomainNormalizable
|
||||||
include DomainMaterializable
|
include DomainMaterializable
|
||||||
|
|
||||||
enum :severity, { silence: 0, suspend: 1, noop: 2 }
|
enum :severity, { silence: 0, suspend: 1, noop: 2 }, validate: true
|
||||||
|
|
||||||
validates :domain, presence: true, uniqueness: true, domain: true
|
validates :domain, presence: true, uniqueness: true, domain: true
|
||||||
|
|
||||||
|
@ -217,6 +217,17 @@ RSpec.describe 'Domain Blocks' do
|
|||||||
.to start_with('application/json')
|
.to start_with('application/json')
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
context 'when severity is invalid' do
|
||||||
|
let(:params) { { domain: 'bar.com', severity: :bar } }
|
||||||
|
|
||||||
|
it 'returns http unprocessable entity' do
|
||||||
|
subject
|
||||||
|
|
||||||
|
expect(response).to have_http_status(422)
|
||||||
|
expect(body_as_json[:error]).to eq('Validation failed: Severity is not included in the list')
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
describe 'PUT /api/v1/admin/domain_blocks/:id' do
|
describe 'PUT /api/v1/admin/domain_blocks/:id' do
|
||||||
|
Loading…
Reference in New Issue
Block a user