7 lines
156 B
Ruby
7 lines
156 B
Ruby
class ItemZoneSetsController < ApplicationController
|
|
caches_page :index
|
|
|
|
def index
|
|
render :json => Zone::ItemZoneSets.keys.sort.as_json
|
|
end
|
|
end
|