protect against bots with timeouts

This commit is contained in:
2015-10-06 09:16:07 +02:00
parent 99390a5e5a
commit b381cbf066
9 changed files with 56 additions and 2 deletions
+2
View File
@@ -5,5 +5,7 @@ html
= javascript_include_tag 'application', 'data-turbolinks-track' => true
= csrf_meta_tags
body
= console if Rails.env.development?
.container
= render 'shared/flashes'
= yield
+5
View File
@@ -0,0 +1,5 @@
- if flash.any?
#flashes
- flash.each do |type, message|
div class="alert alert-#{type} fade in"
= message