ADD: Конфигурация публикаций

This commit is contained in:
Evg 2023-02-27 13:03:52 +03:00
parent bf04182b3a
commit dcc2359193

15
config/publication.php Normal file
View file

@ -0,0 +1,15 @@
<?php
/*
* Publication of posts and answers
* Публикация постов и ответов
*/
return [
// Enable (true) merging the first reply from posts if post author = reply author
// Включить (true) слияние первого ответа с постом в том случае, если автор поста = автору ответа
'merge_answer_post' => false,
// Enable (true) merge responses if a member posts multiple responses one after the other
// Включить (true) слияние ответов, если участник публикует множество ответов один за другим
'merge_answers' => false,
];