about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--app/models/account.rb1
-rw-r--r--app/models/concerns/targetable.rb7
2 files changed, 0 insertions, 8 deletions
diff --git a/app/models/account.rb b/app/models/account.rb
index 4561fd0a4..5b0d2d65c 100644
--- a/app/models/account.rb
+++ b/app/models/account.rb
@@ -47,7 +47,6 @@ class Account < ApplicationRecord
   include AccountInteractions
   include Attachmentable
   include Remotable
-  include Targetable
 
   # Local users
   has_one :user, inverse_of: :account
diff --git a/app/models/concerns/targetable.rb b/app/models/concerns/targetable.rb
deleted file mode 100644
index 506253bed..000000000
--- a/app/models/concerns/targetable.rb
+++ /dev/null
@@ -1,7 +0,0 @@
-# frozen_string_literal: true
-
-module Targetable
-  def object_type
-    :object
-  end
-end