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