Skip to content

Commit e04f04d

Browse files
committedAug 19, 2023
wip
1 parent db17f67 commit e04f04d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+566
-199
lines changed
 

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66

77
![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/minetrax/minetrax/laravel-mysql.yml?label=Tests&style=for-the-badge&logo=circleci&logoColor=white)
88
![Discord](https://img.shields.io/discord/508594544598712330?label=Discord&logo=Discord&logoColor=white&style=for-the-badge)
9-
![Lines of code](https://img.shields.io/tokei/lines/github/minetrax/minetrax?style=for-the-badge&logo=xcode&logoColor=white)
109
![GitHub Releases](https://img.shields.io/github/v/release/minetrax/minetrax?include_prereleases&style=for-the-badge&logo=github&logoColor=white)
10+
![License](https://img.shields.io/github/license/minetrax/minetrax?style=for-the-badge&logo=github&logoColor=white)
1111

1212
## About MineTrax
1313
MineTrax is a web suite & analytics tool for your minecraft servers. Using it you can improve your server engagement by providing a unified dashboard for players to visit and view their player data, or you can keep everything private and use it only for analytics, choice is yours.

‎app/Actions/Fortify/CreateNewUser.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ public function __construct(protected GeolocationService $geolocationService)
2323
/**
2424
* Validate and create a newly registered user.
2525
*
26-
* @param array $input
2726
* @return \App\Models\User
2827
*/
2928
public function create(array $input)
@@ -49,6 +48,7 @@ public function create(array $input)
4948
'last_login_ip' => request()->ip(),
5049
]);
5150
$user->assignRole(Role::DEFAULT_ROLE_NAME);
51+
5252
return $user;
5353
}
5454
}

0 commit comments

Comments
 (0)