mirror of https://github.com/docusealco/docuseal
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.
39 lines
957 B
39 lines
957 B
# frozen_string_literal: true
|
|
|
|
class TemplatesController < ApplicationController
|
|
layout false
|
|
|
|
def show
|
|
@template = current_account.templates.preload(documents_attachments: { preview_images_attachments: :blob })
|
|
.find(params[:id])
|
|
end
|
|
|
|
def new
|
|
@template = current_account.templates.new
|
|
end
|
|
|
|
def create
|
|
@template = current_account.templates.new(template_params)
|
|
@template.author = current_user
|
|
|
|
if @template.save
|
|
redirect_to template_path(@template)
|
|
else
|
|
render turbo_stream: turbo_stream.replace(:modal, template: 'templates/new'), status: :unprocessable_entity
|
|
end
|
|
end
|
|
|
|
def destroy
|
|
@template = current_account.templates.find(params[:id])
|
|
@template.update!(deleted_at: Time.current)
|
|
|
|
redirect_to settings_users_path, notice: 'template has been archived.'
|
|
end
|
|
|
|
private
|
|
|
|
def template_params
|
|
params.require(:template).permit(:name, :schema)
|
|
end
|
|
end
|