Add configuration option to hide official templates

Introduce a new environment variable and configuration option to allow users to hide official templates in the template gallery. This provides more flexibility for self-hosted instances of OpnForm.
This commit is contained in:
Julien Nahum
2025-02-01 21:14:28 +01:00
parent 932585b9d3
commit 5f0f873fb2
3 changed files with 3 additions and 1 deletions

View File

@@ -14,7 +14,7 @@ class TemplateController extends Controller
{
private function getProdTemplates($slug = false)
{
if (!config('app.self_hosted')) {
if (!config('app.self_hosted') || !config('opnform.show_official_templates')) {
return [];
}