fix: DockerSecretsResolver - don't normalize absolute paths like /var/www/html/...
Some checks failed
Deploy Application / deploy (push) Has been cancelled
Some checks failed
Deploy Application / deploy (push) Has been cancelled
This commit is contained in:
32
config/cms/default-content-types.php
Normal file
32
config/cms/default-content-types.php
Normal file
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
/**
|
||||
* Default CMS Content Types Configuration
|
||||
*
|
||||
* This file defines the standard content types that will be seeded
|
||||
* when running the DefaultContentTypesSeeder.
|
||||
*
|
||||
* You can modify this file to customize the default content types
|
||||
* without changing the seeder code.
|
||||
*/
|
||||
|
||||
return [
|
||||
'page' => [
|
||||
'name' => 'Page',
|
||||
'description' => 'Standard pages for general content',
|
||||
'isSystem' => true,
|
||||
],
|
||||
'post' => [
|
||||
'name' => 'Post',
|
||||
'description' => 'Blog posts and news articles',
|
||||
'isSystem' => true,
|
||||
],
|
||||
'landing_page' => [
|
||||
'name' => 'Landing Page',
|
||||
'description' => 'Marketing landing pages for campaigns',
|
||||
'isSystem' => true,
|
||||
],
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user