Files
fizzy/app/controllers/bubbles/pins/trays_controller.rb
T
Jason Zimdars 28a569c49b Tickets
2025-03-17 21:24:08 -05:00

6 lines
148 B
Ruby

class Bubbles::Pins::TraysController < ApplicationController
def show
@pins = Current.user.pins.includes(:bubble).ordered.limit(20)
end
end