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