7 lines
162 B
Ruby
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
|