From 5e96d9224c8d4ceefd31d87243abd63b32fd7fff Mon Sep 17 00:00:00 2001 From: Yuriy Bakhtin Date: Mon, 13 May 2024 16:03:52 +0200 Subject: [PATCH] Update module resources path --- Module.php | 15 --------------- docs/CHANGELOG.md | 4 ++++ module.json | 4 ++-- 3 files changed, 6 insertions(+), 17 deletions(-) diff --git a/Module.php b/Module.php index 0d14bae..4e66b10 100644 --- a/Module.php +++ b/Module.php @@ -9,12 +9,6 @@ */ class Module extends \humhub\components\Module { - - /** - * @inheritdoc - */ - public $resourcesPath = 'resources'; - /** * @inheritdoc */ @@ -22,13 +16,4 @@ public function getConfigUrl() { return Url::to(['/auth-github/admin']); } - - /** - * @inheritdoc - */ - public function disable() - { - // Cleanup all module data, don't remove the parent::disable()!!! - parent::disable(); - } } diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index fe3a566..767520c 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,6 +1,10 @@ Changelog ========= +1.1.0 (Unreleased) +------------------------- +- Fix: Update module resources path + 1.0.0 (March 2, 2022) --------------------- - Initial release diff --git a/module.json b/module.json index a0d1431..afe65fc 100644 --- a/module.json +++ b/module.json @@ -4,9 +4,9 @@ "description": "Integrating GitHub Sign-In (OAuth 2.0).", "keywords": [ ], - "version": "1.0.0", + "version": "1.1.0", "homepage": "https://github.com/humhub-contrib/auth-github", "humhub": { - "minVersion": "1.6" + "minVersion": "1.17" } }