File tree 5 files changed +13
-5
lines changed
5 files changed +13
-5
lines changed Original file line number Diff line number Diff line change 29
29
coverage.xml
30
30
resources /lang /locales.js
31
31
.phpunit.result.cache
32
+
33
+ /public /build
34
+ /public /hot
35
+ result
36
+ docker-compose.yaml
Original file line number Diff line number Diff line change 1
1
<?php
2
2
3
3
return [
4
- // The number of days ellapsed before old activity log entries are deleted.
4
+ // The number of days elapsed before old activity log entries are deleted.
5
5
'prune_days ' => env ('APP_ACTIVITY_PRUNE_DAYS ' , 90 ),
6
6
7
7
// If set to true activity log entries generated by an admin user that is not also
Original file line number Diff line number Diff line change 15
15
Route::get ('/install ' , [Remote \Servers \ServerInstallController::class, 'index ' ]);
16
16
Route::post ('/install ' , [Remote \Servers \ServerInstallController::class, 'store ' ]);
17
17
18
- Route::post ('/archive ' , [Remote \Servers \ServerTransferController::class, 'archive ' ]);
19
18
Route::get ('/transfer/failure ' , [Remote \Servers \ServerTransferController::class, 'failure ' ]);
20
19
Route::get ('/transfer/success ' , [Remote \Servers \ServerTransferController::class, 'success ' ]);
20
+ Route::post ('/transfer/failure ' , [Remote \Servers \ServerTransferController::class, 'failure ' ]);
21
+ Route::post ('/transfer/success ' , [Remote \Servers \ServerTransferController::class, 'success ' ]);
21
22
});
22
23
23
24
Route::group (['prefix ' => '/backups ' ], function () {
Original file line number Diff line number Diff line change 1
1
<?php
2
2
3
+ use Illuminate \Support \Facades \Route ;
3
4
use Pterodactyl \Http \Controllers \Auth ;
4
5
5
6
/*
11
12
|
12
13
*/
13
14
14
- // These routes are defined so that we can continue to reference them programatically .
15
+ // These routes are defined so that we can continue to reference them programmatically .
15
16
// They all route to the same controller function which passes off to React.
16
17
Route::get ('/login ' , [Auth \LoginController::class, 'index ' ])->name ('auth.login ' );
17
18
Route::get ('/password ' , [Auth \LoginController::class, 'index ' ])->name ('auth.forgot-password ' );
38
39
// is created).
39
40
Route::post ('/password/reset ' , Auth \ResetPasswordController::class)->name ('auth.reset-password ' );
40
41
41
- // Remove the guest middleware and apply the authenticated middleware to this endpoint
42
+ // Remove the guest middleware and apply the authenticated middleware to this endpoint,
42
43
// so it cannot be used unless you're already logged in.
43
44
Route::post ('/logout ' , [Auth \LoginController::class, 'logout ' ])
44
45
->withoutMiddleware ('guest ' )
45
46
->middleware ('auth ' )
46
47
->name ('auth.logout ' );
47
48
48
- // Catch any other combinations of routes and pass them off to the Vuejs component.
49
+ // Catch any other combinations of routes and pass them off to the React component.
49
50
Route::fallback ([Auth \LoginController::class, 'index ' ]);
Original file line number Diff line number Diff line change 1
1
<?php
2
2
3
+ use Illuminate \Support \Facades \Route ;
3
4
use Pterodactyl \Http \Controllers \Base ;
4
5
use Pterodactyl \Http \Middleware \RequireTwoFactorAuthentication ;
5
6
You can’t perform that action at this time.
0 commit comments