mirror of
https://github.com/docusealco/docuseal.git
synced 2026-06-23 04:10:11 +00:00
12 lines
249 B
Ruby
12 lines
249 B
Ruby
# frozen_string_literal: true
|
|
|
|
class TemplatesPreviewController < ApplicationController
|
|
load_and_authorize_resource :template
|
|
|
|
def show
|
|
@template_data = Templates.serialize_for_builder(@template)
|
|
|
|
render :show, layout: 'plain'
|
|
end
|
|
end
|