File tree Expand file tree Collapse file tree 5 files changed +13
-5
lines changed
Expand file tree Collapse file tree 5 files changed +13
-5
lines changed Original file line number Diff line number Diff line change 2929coverage.xml
3030resources /lang /locales.js
3131.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 11<?php
22
33return [
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.
55 'prune_days ' => env ('APP_ACTIVITY_PRUNE_DAYS ' , 90 ),
66
77 // 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 1515 Route::get ('/install ' , [Remote \Servers \ServerInstallController::class, 'index ' ]);
1616 Route::post ('/install ' , [Remote \Servers \ServerInstallController::class, 'store ' ]);
1717
18- Route::post ('/archive ' , [Remote \Servers \ServerTransferController::class, 'archive ' ]);
1918 Route::get ('/transfer/failure ' , [Remote \Servers \ServerTransferController::class, 'failure ' ]);
2019 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 ' ]);
2122});
2223
2324Route::group (['prefix ' => '/backups ' ], function () {
Original file line number Diff line number Diff line change 11<?php
22
3+ use Illuminate \Support \Facades \Route ;
34use Pterodactyl \Http \Controllers \Auth ;
45
56/*
1112|
1213*/
1314
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 .
1516// They all route to the same controller function which passes off to React.
1617Route::get ('/login ' , [Auth \LoginController::class, 'index ' ])->name ('auth.login ' );
1718Route::get ('/password ' , [Auth \LoginController::class, 'index ' ])->name ('auth.forgot-password ' );
3839// is created).
3940Route::post ('/password/reset ' , Auth \ResetPasswordController::class)->name ('auth.reset-password ' );
4041
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,
4243// so it cannot be used unless you're already logged in.
4344Route::post ('/logout ' , [Auth \LoginController::class, 'logout ' ])
4445 ->withoutMiddleware ('guest ' )
4546 ->middleware ('auth ' )
4647 ->name ('auth.logout ' );
4748
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.
4950Route::fallback ([Auth \LoginController::class, 'index ' ]);
Original file line number Diff line number Diff line change 11<?php
22
3+ use Illuminate \Support \Facades \Route ;
34use Pterodactyl \Http \Controllers \Base ;
45use Pterodactyl \Http \Middleware \RequireTwoFactorAuthentication ;
56
You can’t perform that action at this time.
0 commit comments