Skip to content

Releases: vatger/xenforo-auth

v1.3.5

02 Feb 21:07
Compare
Choose a tag to compare

Remove ability to login as "Administrator" account.

- private static array $DISALLOWED_FUNC_ACC = ['XF Support Admin', 'VATSIM Migration'];
+ private static array $DISALLOWED_FUNC_ACC = ['Administrator', 'XF Support Admin', 'VATSIM Migration'];

v1.3.4

02 Feb 00:07
Compare
Choose a tag to compare

Update sorting of functional accounts by username (asc order). This also results in fir accounts being grouped.

$functionalAccounts = \XF::finder("XF:User")
    ->where('custom_title', '=', '')
+   ->order('username', 'ASC')
    ->fetch();

v1.3.3

01 Feb 22:33
Compare
Choose a tag to compare

Update to fix an internal server error "Cannot access string offset on type string".

v1.3.2

01 Feb 22:17
Compare
Choose a tag to compare

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

01 Feb 22:00
Compare
Choose a tag to compare

Minor update from v1.3.0 to fix some issues with other addons and moving from extending the XF Entity classes to extending the XFCP_XXXX classes instead. This should hopefully resolve issues with other addons and is the way to go in the future.

v1.3.0

31 Jan 21:26
Compare
Choose a tag to compare

Updates to v1.3.0 allowing for (super)moderator assignment and permission management via API.

v1.0.0

26 Jun 13:02
Compare
Choose a tag to compare

Full Changelog: v0.0.5...v1.0.0

v0.0.5

24 Jun 13:47
Compare
Choose a tag to compare

Full Changelog: v0.0.2...v0.0.5

First full release with all required functionality implemented.

v0.0.2

22 Jun 19:18
Compare
Choose a tag to compare

Full Changelog: v0.0.1...v0.0.2

v0.0.1

21 Jun 18:24
Compare
Choose a tag to compare