b19ae521b7
Co-authored-by: Claire <claire.github-309c@sitedethib.com>
10 rader
237 B
Ruby
10 rader
237 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Redirect::StatusesController < Redirect::BaseController
|
|
private
|
|
|
|
def set_resource
|
|
@resource = Status.find(params[:id])
|
|
not_found if @resource.local? || !@resource.distributable?
|
|
end
|
|
end
|