forked from OpenNeo/impress
7 lines
147 B
Ruby
7 lines
147 B
Ruby
|
class ItemAppearancesController < ApplicationController
|
||
|
def index
|
||
|
@item = Item.find(params[:item_id])
|
||
|
render json: @item.appearances
|
||
|
end
|
||
|
end
|