diff options
author | multiple creatures <dev@multiple-creature.party> | 2019-07-21 16:52:09 -0500 |
---|---|---|
committer | multiple creatures <dev@multiple-creature.party> | 2019-07-21 16:52:09 -0500 |
commit | 3582566a5298a8cc132e42221b4d7fbce4fd7dc1 (patch) | |
tree | cea75ae5fb34443f79e4a5eb6efe5e823f000572 | |
parent | 6de7b8e02136898c1de19b2a9d6a5452e95b3586 (diff) |
privacy - remove rss endpoint from account controller
-rw-r--r-- | app/controllers/accounts_controller.rb | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/app/controllers/accounts_controller.rb b/app/controllers/accounts_controller.rb index 8c4ae97eb..8994449b4 100644 --- a/app/controllers/accounts_controller.rb +++ b/app/controllers/accounts_controller.rb @@ -32,13 +32,6 @@ class AccountsController < ApplicationController end end - format.rss do - mark_cacheable! - - @statuses = cache_collection(default_statuses.without_reblogs.without_replies.limit(PAGE_SIZE), Status) - render xml: RSS::AccountSerializer.render(@account, @statuses) - end - format.json do mark_cacheable! |