Add whitelist mode (#11291)

This commit is contained in:
Eugen Rochko
2019-07-30 11:10:46 +02:00
committed by GitHub
parent 85b7b565de
commit 24552b5160
44 changed files with 302 additions and 53 deletions

View File

@ -3,7 +3,8 @@
class PublicTimelinesController < ApplicationController
layout 'public'
before_action :check_enabled
before_action :authenticate_user!, if: :whitelist_mode?
before_action :require_enabled!
before_action :set_body_classes
before_action :set_instance_presenter
@ -16,7 +17,7 @@ class PublicTimelinesController < ApplicationController
private
def check_enabled
def require_enabled!
not_found unless Setting.timeline_preview
end