about summary refs log tree commit diff
path: root/app/helpers/profile_helper.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/helpers/profile_helper.rb')
-rw-r--r--app/helpers/profile_helper.rb8
1 files changed, 0 insertions, 8 deletions
diff --git a/app/helpers/profile_helper.rb b/app/helpers/profile_helper.rb
index cb19638d3..3a34dfbd8 100644
--- a/app/helpers/profile_helper.rb
+++ b/app/helpers/profile_helper.rb
@@ -3,14 +3,6 @@ module ProfileHelper
     account.display_name.blank? ? account.username : account.display_name
   end
 
-  def profile_url(account)
-    account.local? ? super(name: account.username) : account.url
-  end
-
-  def status_url(status)
-    status.local? ? super(name: status.account.username, id: status.stream_entry.id) : status.url
-  end
-
   def avatar_for_status_url(status)
     status.reblog? ? status.reblog.account.avatar.url(:small) : status.account.avatar.url(:small)
   end