engine/app/controllers/locomotive/snippets_controller.rb

16 lines
280 B
Ruby
Raw Normal View History

module Locomotive
class SnippetsController < BaseController
sections 'settings', 'theme_assets'
respond_to :json, :only => :update
def destroy
destroy! do |format|
format.html { redirect_to locomotive_theme_assets_url }
end
end
end
end