5 lines
128 B
Ruby
5 lines
128 B
Ruby
class BatchesController < ApplicationController
|
|
def index
|
|
@batches=Batch.all.page(params[:page]).per(2)
|
|
end
|
|
end |