You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
docuseal/app/controllers/templates_restore_controlle...

12 lines
299 B

# frozen_string_literal: true
class TemplatesRestoreController < ApplicationController
def create
template = current_account.templates.find(params[:template_id])
template.update!(deleted_at: nil)
redirect_to template_path(template), notice: 'Template has been unarchived'
end
end