diff options
author | multiple creatures <dev@multiple-creature.party> | 2020-02-05 12:57:11 -0600 |
---|---|---|
committer | multiple creatures <dev@multiple-creature.party> | 2020-02-05 12:57:11 -0600 |
commit | eec87c190b42b4b4c50f55594cb16ccc9db28c17 (patch) | |
tree | 72c5b00c5223f2dc573af51379086ff52d86878e /app/models | |
parent | 7a716419abbf116dce4d3d4d346a8256e1bbecad (diff) |
(finally) remove unused `vars` from account model
Diffstat (limited to 'app/models')
-rw-r--r-- | app/models/account.rb | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/app/models/account.rb b/app/models/account.rb index 3993f450f..8ea4ec288 100644 --- a/app/models/account.rb +++ b/app/models/account.rb @@ -421,12 +421,6 @@ class Account < ApplicationRecord self.fields = tmp end -## TODO: See if I need to follow the below advice - # needs to be removed after migration -# def vars -# self[:vars] -# end - def subscription(webhook_url) @subscription ||= OStatus2::Subscription.new(remote_url, secret: secret, webhook: webhook_url, hub: hub_url) end |