Files
redux-scraper/app/controllers/domain/inkbunny/posts_controller.rb
2024-12-19 06:04:37 +00:00

10 lines
213 B
Ruby

class Domain::Inkbunny::PostsController < ApplicationController
def index
@posts = Domain::Inkbunny::Post.page(params[:page])
end
def show
@post = Domain::Inkbunny::Post.find(params[:id])
end
end