Merge pull request #221 from glitch-soc/local-only-policy

Update StatusPolicy to check current_account for local_only? toots.
local
beatrix 7 years ago committed by GitHub
commit b006bb82af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      app/policies/status_policy.rb
  2. 6
      spec/policies/status_policy_spec.rb

@ -6,7 +6,7 @@ class StatusPolicy < ApplicationPolicy
end
def show?
return false if local_only? && account.nil?
return false if local_only? && current_account.nil?
if direct?
owned? || record.mentions.where(account: current_account).exists?

@ -71,6 +71,12 @@ RSpec.describe StatusPolicy, type: :model do
expect(subject).to_not permit(viewer, status)
end
it 'denies access when local-only and the viewer is not logged in' do
allow(status).to receive(:local_only?) { true }
expect(subject).to_not permit(nil, status)
end
end
permissions :reblog? do

Loading…
Cancel
Save