item zone sets jsonp controller

This commit is contained in:
Emi Matchu 2010-06-26 16:29:23 -04:00
parent a0a1a94e96
commit 4ba6af20ad
4 changed files with 14 additions and 0 deletions

View file

@ -0,0 +1,5 @@
class ItemZoneSetsController < ApplicationController
def index
render :json => Zone::ItemZoneSets.keys.sort.as_json, :callback => params[:callback]
end
end

View file

@ -0,0 +1,2 @@
module ItemZoneSetsHelper
end

View file

@ -8,4 +8,6 @@ OpenneoImpressItems::Application.routes.draw do |map|
match '/pet_types/:pet_type_id/swf_assets.json' => 'swf_assets#index', :as => :pet_type_swf_assets
match '/species/:species_id/color/:color_id/pet_type.json' => 'pet_types#show'
match '/item_zone_sets.js' => 'ItemZoneSets#index'
end

View file

@ -0,0 +1,5 @@
require 'spec_helper'
describe ItemZoneSetsController do
end