Releases: vatger/xenforo-auth
Releases · vatger/xenforo-auth
v1.3.5
v1.3.4
v1.3.3
v1.3.2
Updates the check to determine if a user is allowed to use a functional account. This disables login for the "service" accounts XF Support Admin
and VATSIM Migration
, which are not to be used as functional accounts.
Before:
array_find_key(self::$DISALLOWED_FUNC_ACC, fn(string $accName) => $accName === $account->username)
After:
array_find(self::$DISALLOWED_FUNC_ACC, fn(string $accName) => $accName === $account->username) !== null
v1.3.1
v1.3.0
v1.0.0
Full Changelog: v0.0.5...v1.0.0
v0.0.5
Full Changelog: v0.0.2...v0.0.5
First full release with all required functionality implemented.
v0.0.2
Full Changelog: v0.0.1...v0.0.2
v0.0.1
Initial Release
Full Changelog: https://github.com/vatger/xenforo-oauth/commits/v0.0.1