5 lines
164 B
Ruby
5 lines
164 B
Ruby
class ItemZoneSetsController < ApplicationController
|
|
def index
|
|
render :json => Zone::ItemZoneSets.keys.sort.as_json, :callback => params[:callback]
|
|
end
|
|
end
|