about summary refs log tree commit diff
path: root/app/lib
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2016-10-13 16:49:52 +0200
committerEugen Rochko <eugen@zeonfederated.com>2016-10-13 16:51:34 +0200
commit33f7e1cf996b9f87784cb1218885d9acbc718944 (patch)
treefad5ea67649e709d96e8267e6d767a598ba00df0 /app/lib
parent157f03f8bdbca1b34895099b38e5f2a1aeb1bd23 (diff)
Shorten rendered links (strip protocol and www, truncate to 30 chars), redirect
to sign in page after sign up instead of root path which redirects to /about
Diffstat (limited to 'app/lib')
-rw-r--r--app/lib/formatter.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/app/lib/formatter.rb b/app/lib/formatter.rb
index 17d2dfc58..60bc3733e 100644
--- a/app/lib/formatter.rb
+++ b/app/lib/formatter.rb
@@ -29,7 +29,9 @@ class Formatter
   end
 
   def link_urls(html)
-    auto_link(html, link: :urls, html: { rel: 'nofollow noopener' })
+    auto_link(html, link: :urls, html: { rel: 'nofollow noopener' }) do |text|
+      truncate(text.gsub(/\Ahttps?:\/\/(www\.)?/, ''), length: 30)
+    end
   end
 
   def link_mentions(html, mentions)