Revert "SECURITY: Fix XSS on unsubscribed page."

This reverts commit 190558db9d76cff79bc7c9a61ea00515755185d3.
This commit is contained in:
Guo Xiang Tan
2017-10-09 09:03:07 +08:00
parent 190558db9d
commit 6fe604b93e
4 changed files with 2 additions and 17 deletions

View File

@ -1,13 +0,0 @@
require 'rails_helper'
RSpec.describe EmailController do
describe '#unsubscribed' do
describe 'when email is invalid' do
it 'should return the right response' do
get '/email/unsubscribed', params: { email: 'somerandomstring' }
expect(response.status).to eq(404)
end
end
end
end