2
0

Remove un-needed Poll.attached scope (#33368)

This commit is contained in:
Matt Jankowski
2024-12-20 10:15:11 -05:00
committed by GitHub
parent b648c64e2e
commit f35de1ed0d
4 changed files with 2 additions and 23 deletions

View File

@@ -15,7 +15,7 @@ class Api::V1::Polls::VotesController < Api::BaseController
private
def set_poll
@poll = Poll.attached.find(params[:poll_id])
@poll = Poll.find(params[:poll_id])
authorize @poll.status, :show?
rescue Mastodon::NotPermittedError
not_found

View File

@@ -15,7 +15,7 @@ class Api::V1::PollsController < Api::BaseController
private
def set_poll
@poll = Poll.attached.find(params[:id])
@poll = Poll.find(params[:id])
authorize @poll.status, :show?
rescue Mastodon::NotPermittedError
not_found