bfb7ed1216
We used the my/ space in HEY to reflect anything that was primarily hinged off Current.user. Good to use here too.
6 lines
137 B
Ruby
6 lines
137 B
Ruby
class My::PinsController < ApplicationController
|
|
def index
|
|
@pins = Current.user.pins.includes(:bubble).ordered.limit(20)
|
|
end
|
|
end
|