Browse Source

Fix redirecting non-functional accounts on public pages (#11978)

Fix #11969
master^2
Eugen Rochko 4 years ago
committed by GitHub
parent
commit
de5305a3a5
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
12 changed files with 16 additions and 0 deletions
  1. +1
    -0
      app/controllers/accounts_controller.rb
  2. +1
    -0
      app/controllers/custom_css_controller.rb
  3. +2
    -0
      app/controllers/directories_controller.rb
  4. +1
    -0
      app/controllers/follower_accounts_controller.rb
  5. +1
    -0
      app/controllers/following_accounts_controller.rb
  6. +1
    -0
      app/controllers/manifests_controller.rb
  7. +1
    -0
      app/controllers/media_controller.rb
  8. +1
    -0
      app/controllers/media_proxy_controller.rb
  9. +2
    -0
      app/controllers/remote_follow_controller.rb
  10. +2
    -0
      app/controllers/remote_interaction_controller.rb
  11. +1
    -0
      app/controllers/statuses_controller.rb
  12. +2
    -0
      app/controllers/tags_controller.rb

+ 1
- 0
app/controllers/accounts_controller.rb View File

@@ -10,6 +10,7 @@ class AccountsController < ApplicationController
before_action :set_body_classes

skip_around_action :set_locale, if: -> { request.format == :json }
skip_before_action :require_functional!

def show
respond_to do |format|


+ 1
- 0
app/controllers/custom_css_controller.rb View File

@@ -2,6 +2,7 @@

class CustomCssController < ApplicationController
skip_before_action :store_current_location
skip_before_action :require_functional!

before_action :set_cache_headers



+ 2
- 0
app/controllers/directories_controller.rb View File

@@ -9,6 +9,8 @@ class DirectoriesController < ApplicationController
before_action :set_tag, only: :show
before_action :set_accounts

skip_before_action :require_functional!

def index
render :index
end


+ 1
- 0
app/controllers/follower_accounts_controller.rb View File

@@ -8,6 +8,7 @@ class FollowerAccountsController < ApplicationController
before_action :set_cache_headers

skip_around_action :set_locale, if: -> { request.format == :json }
skip_before_action :require_functional!

def index
respond_to do |format|


+ 1
- 0
app/controllers/following_accounts_controller.rb View File

@@ -8,6 +8,7 @@ class FollowingAccountsController < ApplicationController
before_action :set_cache_headers

skip_around_action :set_locale, if: -> { request.format == :json }
skip_before_action :require_functional!

def index
respond_to do |format|


+ 1
- 0
app/controllers/manifests_controller.rb View File

@@ -2,6 +2,7 @@

class ManifestsController < ApplicationController
skip_before_action :store_current_location
skip_before_action :require_functional!

def show
expires_in 3.minutes, public: true


+ 1
- 0
app/controllers/media_controller.rb View File

@@ -4,6 +4,7 @@ class MediaController < ApplicationController
include Authorization

skip_before_action :store_current_location
skip_before_action :require_functional!

before_action :authenticate_user!, if: :whitelist_mode?
before_action :set_media_attachment


+ 1
- 0
app/controllers/media_proxy_controller.rb View File

@@ -4,6 +4,7 @@ class MediaProxyController < ApplicationController
include RoutingHelper

skip_before_action :store_current_location
skip_before_action :require_functional!

before_action :authenticate_user!, if: :whitelist_mode?



+ 2
- 0
app/controllers/remote_follow_controller.rb View File

@@ -7,6 +7,8 @@ class RemoteFollowController < ApplicationController

before_action :set_body_classes

skip_before_action :require_functional!

def new
@remote_follow = RemoteFollow.new(session_params)
end


+ 2
- 0
app/controllers/remote_interaction_controller.rb View File

@@ -10,6 +10,8 @@ class RemoteInteractionController < ApplicationController
before_action :set_status
before_action :set_body_classes

skip_before_action :require_functional!

def new
@remote_follow = RemoteFollow.new(session_params)
end


+ 1
- 0
app/controllers/statuses_controller.rb View File

@@ -19,6 +19,7 @@ class StatusesController < ApplicationController
before_action :set_autoplay, only: :embed

skip_around_action :set_locale, if: -> { request.format == :json }
skip_before_action :require_functional!, only: [:show, :embed]

content_security_policy only: :embed do |p|
p.frame_ancestors(false)


+ 2
- 0
app/controllers/tags_controller.rb View File

@@ -13,6 +13,8 @@ class TagsController < ApplicationController
before_action :set_body_classes
before_action :set_instance_presenter

skip_before_action :require_functional!

def show
respond_to do |format|
format.html do


Loading…
Cancel
Save