Skip to content

Commit

Permalink
Merge 3.7.0 into master (#2667)
Browse files Browse the repository at this point in the history
  • Loading branch information
williamjallen authored Jan 16, 2025
2 parents 9fd9dcc + eb5131a commit 7da65b4
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions app/Utils/AuthTokenUtil.php
Original file line number Diff line number Diff line change
Expand Up @@ -222,9 +222,9 @@ public static function getTokensForUser(int $user_id): Collection
*/
public static function getAllTokens(): Collection
{
return AuthToken::select('authtoken.*', 'project.name AS projectname', 'user.firstname AS owner_firstname', 'user.lastname AS owner_lastname')
return AuthToken::select('authtoken.*', 'project.name AS projectname', 'users.firstname AS owner_firstname', 'users.lastname AS owner_lastname')
->leftJoin('project', 'project.id', '=', 'authtoken.projectid')
->leftJoin('users', 'user.id', '=', 'authtoken.userid')
->leftJoin('users', 'users.id', '=', 'authtoken.userid')
->get();
}

Expand Down
2 changes: 1 addition & 1 deletion config/cdash.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
'expires' => env('PASSWORD_EXPIRATION', 0),
'unique' => env('UNIQUE_PASSWORD_COUNT', 0),
],
'version' => '3.6.2',
'version' => '3.7.0',
'registration' => [
'email' => [
'verify' => env('REGISTRATION_EMAIL_VERIFY', true),
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cdash",
"version": "3.6.2",
"version": "3.7.0",
"description": "Continuous integration dashboard.",
"repository": "https://github.com/Kitware/CDash",
"license": "BSD-3-Clause",
Expand Down

0 comments on commit 7da65b4

Please sign in to comment.