forked from OpenNeo/impress
Emi Matchu
c2de6f7167
Yay it works(*)! But two major missing pieces: - Outfit saving doesn't persist it at all - Item compatibility is unaffected: items will still appear in search and in the preview, even when they don't fit anymore.
21 lines
593 B
Ruby
21 lines
593 B
Ruby
class AltStylesController < ApplicationController
|
|
def index
|
|
@alt_styles = AltStyle.includes(:species, :color, :swf_assets).
|
|
order(:species_id, :color_id)
|
|
|
|
if params[:species_id]
|
|
@species = Species.find(params[:species_id])
|
|
@alt_styles = @alt_styles.merge(@species.alt_styles)
|
|
end
|
|
|
|
respond_to do |format|
|
|
format.html { render }
|
|
format.json {
|
|
render json: @alt_styles.includes(swf_assets: [:zone]).as_json(
|
|
include: {swf_assets: {include: [:zone], methods: [:image_url]}},
|
|
methods: [:series_name, :adjective_name, :thumbnail_url],
|
|
)
|
|
}
|
|
end
|
|
end
|
|
end
|