Sha256: 826065eb1125c4512a2d508f44f00e3201dc21893981bd06586106935471409e
Contents?: true
Size: 452 Bytes
Versions: 99
Compression:
Stored size: 452 Bytes
Contents
module Spree module Admin class TaxonomiesController < ResourceController respond_to :json, :only => [:get_children] def get_children @taxons = Taxon.find(params[:parent_id]).children end private def location_after_save if @taxonomy.created_at == @taxonomy.updated_at edit_admin_taxonomy_url(@taxonomy) else admin_taxonomies_url end end end end end
Version data entries
99 entries across 99 versions & 2 rubygems