Fix /activity endpoint not require signature in authorized fetch mode (#15592)

Fixes #15589

Co-authored-by: Claire <claire.github-309c@sitedethib.com>
master
ThibG 2021-01-19 06:47:36 +01:00 committed by GitHub
parent e46b50e805
commit 2ff01f78f7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ class StatusesController < ApplicationController
layout 'public'
before_action :require_signature!, only: :show, if: -> { request.format == :json && authorized_fetch_mode? }
before_action :require_signature!, only: [:show, :activity], if: -> { request.format == :json && authorized_fetch_mode? }
before_action :set_status
before_action :set_instance_presenter
before_action :set_link_headers