Skip to content

Commit

Permalink
Change last sentence and fix specs
Browse files Browse the repository at this point in the history
closes #7238
  • Loading branch information
SuperTux88 authored and denschub committed Dec 4, 2016
1 parent 61300da commit 6c37171
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions Changelog.md
Expand Up @@ -12,6 +12,7 @@
* Only require AWS-module for fog [#7201](https://github.com/diaspora/diaspora/pull/7201)
* Only show community spotlight links on the contacts page if community spotlight is enabled [#7213](https://github.com/diaspora/diaspora/pull/7213)
* Require spec\_helper in .rspec [#7223](https://github.com/diaspora/diaspora/pull/7223)
* Make the CSRF mail a bit more friendly [#7238](https://github.com/diaspora/diaspora/pull/7238)

## Bug fixes
* Fix fetching comments after fetching likes [#7167](https://github.com/diaspora/diaspora/pull/7167)
Expand Down
2 changes: 1 addition & 1 deletion config/locales/diaspora/en.yml
Expand Up @@ -721,7 +721,7 @@ en:
Don’t worry; you can safely sign in again now.
If you see this message regularly, please check your browsing settings.
If you see this message repeatedly, please check the points above, including any browser add-ons.
Thank you,
The diaspora* email robot!
Expand Down
4 changes: 3 additions & 1 deletion spec/mailers/notifier_spec.rb
Expand Up @@ -476,7 +476,9 @@
end

it "has some informative text in the body" do
expect(email.body.encoded).to include("https://www.owasp.org/index.php/Cross-Site_Request_Forgery_(CSRF)")
email.body.parts.each do |part|
expect(part.decoded).to include("https://www.owasp.org/index.php/Cross-Site_Request_Forgery_(CSRF)")
end
end
end

Expand Down

0 comments on commit 6c37171

Please sign in to comment.