Commits auf Quelle (4)
-
verfasst von Henning Leutz
Update 'next-2.x' with latest changes from 'main' See merge request !5
d8637524 -
verfasst von Henning Leutz
In this commit, added an existence check before calling the checkEditPermission method in ajax files. The Security class use in some files was replaced by Encryption. This commit also made adjustment on getUser function to either return user object or null. Related: #4
4df5756e -
verfasst von Henning Leutz
- Removed inputs for 'quiqqer-major-version' from .gitlab-ci.yml file for stabilization. - Allowed phpunit to run on PHP 8.1 by removing phpunit-php8.1 block from .gitlab-ci.yml. - Updated the homepage URL from 'http' to 'https' in composer.json. - Changed the support URL from 'http' to 'https' in composer.json. - Updated the required 'quiqqer/quiqqer' version to 'quiqqer/core' '^2' in composer.json. BREAKING CHANGE: 'quiqqer/quiqqer' version to 'quiqqer/core'
e6898ab0 -
verfasst von Henning Leutz
fix: add method_exists check before calling method and replace security with encryption See merge request !6
a774c06d
- .gitlab-ci.yml 0 Ergänzungen, 2 Löschungen.gitlab-ci.yml
- ajax/deleteKeys.php 9 Ergänzungen, 0 Löschungenajax/deleteKeys.php
- ajax/generateKey.php 12 Ergänzungen, 3 Löschungenajax/generateKey.php
- ajax/getKey.php 12 Ergänzungen, 3 Löschungenajax/getKey.php
- ajax/getKeys.php 9 Ergänzungen, 0 Löschungenajax/getKeys.php
- ajax/regenerateRecoveryKeys.php 9 Ergänzungen, 0 Löschungenajax/regenerateRecoveryKeys.php
- composer.json 3 Ergänzungen, 3 Löschungencomposer.json
- phpstan-baseline.neon 1 Ergänzung, 35 Löschungenphpstan-baseline.neon
- src/QUI/Auth/Google2Fa/Auth.php 33 Ergänzungen, 31 Löschungensrc/QUI/Auth/Google2Fa/Auth.php
- src/QUI/Auth/Google2Fa/Controls/Login.php 1 Ergänzung, 1 Löschungsrc/QUI/Auth/Google2Fa/Controls/Login.php
- src/QUI/Auth/Google2Fa/Controls/Settings.php 1 Ergänzung, 1 Löschungsrc/QUI/Auth/Google2Fa/Controls/Settings.php
... | ... | @@ -8,16 +8,16 @@ |
{ | ||
"name": "Patrick Müller", | ||
"email": "p.mueller@pcsg.de", | ||
"homepage": "http://www.pcsg.de", | ||
"homepage": "https://www.pcsg.de", | ||
"role": "Developer" | ||
} | ||
], | ||
"support": { | ||
"email": "support@pcsg.de", | ||
"url": "http://www.pcsg.de" | ||
"url": "https://www.pcsg.de" | ||
}, | ||
"require": { | ||
"quiqqer/quiqqer": ">=1.1|dev-master|dev-dev", | ||
"quiqqer/core": "^2", | ||
"pragmarx/google2fa": "2.*", | ||
"bacon/bacon-qr-code": "~1.0" | ||
}, | ||
... | ... |