6 lines
104 B
Ruby
6 lines
104 B
Ruby
class StockitController < ApplicationController
|
|
def index
|
|
@articles = Article.in_stock
|
|
end
|
|
|
|
end
|