diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index be082f8..c21eb41 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,6 +1,10 @@ Changelog ========= +1.0.8 (Unreleased) +------------------------ +- Enh #29: Enable the feature to move a content to another space + 1.0.7 (October 16, 2024) ------------------------ - Enh #26: Use PHP CS Fixer diff --git a/models/Question.php b/models/Question.php index 51cff81..494adb4 100644 --- a/models/Question.php +++ b/models/Question.php @@ -49,6 +49,11 @@ class Question extends ContentActiveRecord implements Searchable */ public $moduleId = 'questions'; + /** + * @inheritdoc + */ + protected $canMove = true; + /** * @inheritdoc */ diff --git a/module.json b/module.json index 69f1fda..5e4c034 100644 --- a/module.json +++ b/module.json @@ -3,7 +3,7 @@ "name": "Q&A", "description": "Users can ask questions, receive helpful answers, and engage in community discussions.", "keywords": ["Q&A", "questions", "answers"], - "version": "1.0.7", + "version": "1.0.8", "humhub": { "minVersion": "1.14" },