blob: 9b7588c94f7028e4a1f2480a72d1e14c31f9e3df (
plain) (
blame)
1
2
3
4
5
6
7
8
|
class StreamsController < ApplicationController
def show
@stream = Stream.find_by_slug(params[:slug])
@updates = @stream.updates.paginate(page: params[:page], per_page: 10)
end
end
|