Fix User.disclose_client never working correctly

Our test environment cheats by constructing a conn with a custom oauth_access/2 function. This assigns a :token to the conn but due to the way it is constructed it has the :user preloaded. When the OAuth Plug fetches a token it does not preload the user, so the check for user.disclose_client was always nil and assumed to be false.

Preloading the :user ensures the test environment matches reality.
This commit is contained in:
Mark Felder 2024-07-31 14:14:31 -04:00
commit e6951e7e40
2 changed files with 2 additions and 1 deletions

View file

@ -0,0 +1 @@
Client application data was always missing from the status