add export template model

This commit is contained in:
Christophe Robillard 2024-03-02 22:13:09 +01:00 committed by simon lehericey
parent 474eb18016
commit d1c3b84ea2
No known key found for this signature in database
GPG key ID: CDE670D827C7B3C5
6 changed files with 238 additions and 0 deletions

View file

@ -0,0 +1,34 @@
FactoryBot.define do
factory :export_template do
name { "Mon export" }
groupe_instructeur
content {
{
"pdf_name" =>
{
"type" => "doc",
"content" => [
{ "type" => "paragraph", "content" => [{ "text" => "export_", "type" => "text" }, { "type" => "mention", "attrs" => { "id" => "dossier_id", "label" => "id dossier" } }, { "text" => " .pdf", "type" => "text" }] }
]
},
"default_dossier_directory" =>
{
"type" => "doc",
"content" =>
[
{
"type" => "paragraph",
"content" =>
[
{ "text" => "dossier_", "type" => "text" },
{ "type" => "mention", "attrs" => { "id" => "dossier_number", "label" => "numéro du dossier" } },
{ "text" => " ", "type" => "text" }
]
}
]
}
}
}
kind { "zip" }
end
end