farmitry_hvac/app/controllers/modals_controller.rb

7 lines
227 B
Ruby

class ModalsController < ApplicationController
def open
@schedule = Schedule.new
render partial: "partials/modals_open", locals: { type: params[:type], id: params[:id], close_button: params[:close_button] }
end
end