Files
redux-scraper/app/controllers/domain/e621/posts_controller.rb
2025-01-01 03:29:53 +00:00

7 lines
162 B
Ruby

# typed: true
class Domain::E621::PostsController < ApplicationController
def show
@post = Domain::E621::Post.find_by!(e621_id: params[:e621_id])
end
end