aboutsummaryrefslogtreecommitdiff
path: root/app/controllers/directories_controller.rb
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2020-12-14 01:41:13 +0100
committerEugen Rochko <eugen@zeonfederated.com>2021-02-16 03:33:32 +0100
commitdd512c140bee24446d1ddab901d04b51a72a2d86 (patch)
treec1e2d1beb1058ccc395d65fe586929b4de8add55 /app/controllers/directories_controller.rb
parent9c273c2a59755a46ff3933470b02df857537a4af (diff)
downloadmastodon-dd512c140bee24446d1ddab901d04b51a72a2d86.tar
mastodon-dd512c140bee24446d1ddab901d04b51a72a2d86.tar.gz
mastodon-dd512c140bee24446d1ddab901d04b51a72a2d86.tar.bz2
mastodon-dd512c140bee24446d1ddab901d04b51a72a2d86.zip
Diffstat (limited to 'app/controllers/directories_controller.rb')
-rw-r--r--app/controllers/directories_controller.rb28
1 files changed, 3 insertions, 25 deletions
diff --git a/app/controllers/directories_controller.rb b/app/controllers/directories_controller.rb
index f198ad5ba..cfd0fa656 100644
--- a/app/controllers/directories_controller.rb
+++ b/app/controllers/directories_controller.rb
@@ -1,42 +1,20 @@
# frozen_string_literal: true
class DirectoriesController < ApplicationController
- layout 'public'
+ include WebAppControllerConcern
before_action :authenticate_user!, if: :whitelist_mode?
before_action :require_enabled!
- before_action :set_instance_presenter
- before_action :set_tag, only: :show
- before_action :set_accounts
skip_before_action :require_functional!, unless: :whitelist_mode?
def index
- render :index
- end
-
- def show
- render :index
+ expires_in 0, public: true if current_account.nil?
end
private
def require_enabled!
- return not_found unless Setting.profile_directory
- end
-
- def set_tag
- @tag = Tag.discoverable.find_normalized!(params[:id])
- end
-
- def set_accounts
- @accounts = Account.local.discoverable.by_recent_status.page(params[:page]).per(20).tap do |query|
- query.merge!(Account.tagged_with(@tag.id)) if @tag
- query.merge!(Account.not_excluded_by_account(current_account)) if current_account
- end
- end
-
- def set_instance_presenter
- @instance_presenter = InstancePresenter.new
+ not_found unless Setting.profile_directory
end
end