├── .dockerignore ├── .editorconfig ├── .env.ci ├── .env.example ├── .env.nix ├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ ├── config.yml │ └── feature-request.yml ├── banner.png ├── dependabot.yml ├── docker │ ├── README.md │ ├── default.conf │ ├── default_ssl.conf │ ├── entrypoint.sh │ ├── supervisord.conf │ └── www.conf ├── server-menu.png ├── workflows-disabled │ ├── build.yaml │ ├── ci.yaml │ ├── lint.yaml │ └── release.yaml └── workflows │ ├── dev-build.yaml │ ├── prod-build.yaml │ ├── release-action.yaml │ └── release.yaml ├── .gitignore ├── .npmrc ├── .php-cs-fixer.dist.php ├── .prettierrc.json ├── .vscode ├── extensions.json └── settings.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE.md ├── LICENSE_MIT ├── README.md ├── SECURITY.md ├── Vagrantfile ├── app ├── Console │ ├── Commands │ │ ├── Environment │ │ │ ├── AppSettingsCommand.php │ │ │ ├── DatabaseSettingsCommand.php │ │ │ └── EmailSettingsCommand.php │ │ ├── InfoCommand.php │ │ ├── Location │ │ │ ├── DeleteLocationCommand.php │ │ │ └── MakeLocationCommand.php │ │ ├── Maintenance │ │ │ ├── CleanServiceBackupFilesCommand.php │ │ │ ├── DeleteOrphanedBackupsCommand.php │ │ │ └── PruneOrphanedBackupsCommand.php │ │ ├── Node │ │ │ ├── MakeNodeCommand.php │ │ │ ├── NodeConfigurationCommand.php │ │ │ └── NodeListCommand.php │ │ ├── Overrides │ │ │ ├── KeyGenerateCommand.php │ │ │ ├── SeedCommand.php │ │ │ └── UpCommand.php │ │ ├── Schedule │ │ │ └── ProcessRunnableCommand.php │ │ ├── Server │ │ │ └── BulkPowerActionCommand.php │ │ ├── UpgradeCommand.php │ │ └── User │ │ │ ├── DeleteUserCommand.php │ │ │ ├── DisableTwoFactorCommand.php │ │ │ └── MakeUserCommand.php │ ├── Kernel.php │ └── RequiresDatabaseMigrations.php ├── Contracts │ ├── Captcha │ │ └── CaptchaProviderInterface.php │ ├── Core │ │ └── ReceivesEvents.php │ ├── Criteria │ │ └── CriteriaInterface.php │ ├── Dns │ │ └── DnsProviderInterface.php │ ├── Elytra │ │ └── Job.php │ ├── Extensions │ │ └── HashidsInterface.php │ ├── Http │ │ └── ClientPermissionsRequest.php │ ├── Repository │ │ ├── AllocationRepositoryInterface.php │ │ ├── ApiKeyRepositoryInterface.php │ │ ├── ApiPermissionRepositoryInterface.php │ │ ├── DatabaseHostRepositoryInterface.php │ │ ├── DatabaseRepositoryInterface.php │ │ ├── EggRepositoryInterface.php │ │ ├── EggVariableRepositoryInterface.php │ │ ├── LocationRepositoryInterface.php │ │ ├── NestRepositoryInterface.php │ │ ├── NodeRepositoryInterface.php │ │ ├── PermissionRepositoryInterface.php │ │ ├── RepositoryInterface.php │ │ ├── ScheduleRepositoryInterface.php │ │ ├── ServerRepositoryInterface.php │ │ ├── ServerVariableRepositoryInterface.php │ │ ├── SessionRepositoryInterface.php │ │ ├── SettingsRepositoryInterface.php │ │ ├── SubuserRepositoryInterface.php │ │ ├── TaskRepositoryInterface.php │ │ └── UserRepositoryInterface.php │ └── Subdomain │ │ └── SubdomainFeatureInterface.php ├── Events │ ├── ActivityLogged.php │ ├── Auth │ │ ├── DirectLogin.php │ │ ├── FailedPasswordReset.php │ │ └── ProvidedAuthenticationToken.php │ ├── Event.php │ ├── Server │ │ ├── Created.php │ │ ├── Creating.php │ │ ├── Deleted.php │ │ ├── Deleting.php │ │ ├── Installed.php │ │ ├── Saved.php │ │ ├── Saving.php │ │ ├── Updated.php │ │ └── Updating.php │ ├── Subuser │ │ ├── Created.php │ │ ├── Creating.php │ │ ├── Deleted.php │ │ └── Deleting.php │ └── User │ │ ├── Created.php │ │ ├── Creating.php │ │ ├── Deleted.php │ │ └── Deleting.php ├── Exceptions │ ├── AccountNotFoundException.php │ ├── AutoDeploymentException.php │ ├── DisplayException.php │ ├── Dns │ │ └── DnsProviderException.php │ ├── Handler.php │ ├── Http │ │ ├── Base │ │ │ └── InvalidPasswordProvidedException.php │ │ ├── Connection │ │ │ └── DaemonConnectionException.php │ │ ├── HttpForbiddenException.php │ │ ├── Server │ │ │ ├── FileSizeTooLargeException.php │ │ │ ├── FileTypeNotEditableException.php │ │ │ └── ServerStateConflictException.php │ │ └── TwoFactorAuthRequiredException.php │ ├── ManifestDoesNotExistException.php │ ├── Model │ │ └── DataValidationException.php │ ├── PterodactylException.php │ ├── Repository │ │ ├── Daemon │ │ │ └── InvalidPowerSignalException.php │ │ ├── DuplicateDatabaseNameException.php │ │ ├── RecordNotFoundException.php │ │ └── RepositoryException.php │ ├── ServerOperations │ │ └── ServerOperationException.php │ ├── Service │ │ ├── Allocation │ │ │ ├── AllocationDoesNotBelongToServerException.php │ │ │ ├── AutoAllocationNotEnabledException.php │ │ │ ├── CidrOutOfRangeException.php │ │ │ ├── InvalidPortMappingException.php │ │ │ ├── NoAutoAllocationSpaceAvailableException.php │ │ │ ├── PortOutOfRangeException.php │ │ │ ├── ServerUsingAllocationException.php │ │ │ └── TooManyPortsInRangeException.php │ │ ├── Backup │ │ │ ├── BackupFailedException.php │ │ │ ├── BackupLockedException.php │ │ │ └── TooManyBackupsException.php │ │ ├── Database │ │ │ ├── DatabaseClientFeatureNotEnabledException.php │ │ │ ├── NoSuitableDatabaseHostException.php │ │ │ └── TooManyDatabasesException.php │ │ ├── Deployment │ │ │ ├── NoViableAllocationException.php │ │ │ └── NoViableNodeException.php │ │ ├── Egg │ │ │ ├── BadJsonFormatException.php │ │ │ ├── HasChildrenException.php │ │ │ ├── InvalidCopyFromException.php │ │ │ ├── NoParentConfigurationFoundException.php │ │ │ └── Variable │ │ │ │ ├── BadValidationRuleException.php │ │ │ │ └── ReservedVariableNameException.php │ │ ├── HasActiveServersException.php │ │ ├── Helper │ │ │ └── CdnVersionFetchingException.php │ │ ├── InvalidFileUploadException.php │ │ ├── Location │ │ │ └── HasActiveNodesException.php │ │ ├── Node │ │ │ └── ConfigurationNotPersistedException.php │ │ ├── Schedule │ │ │ └── Task │ │ │ │ └── TaskIntervalTooLongException.php │ │ ├── Server │ │ │ └── RequiredVariableMissingException.php │ │ ├── ServiceLimitExceededException.php │ │ ├── Subuser │ │ │ ├── ServerSubuserExistsException.php │ │ │ └── UserIsServerOwnerException.php │ │ └── User │ │ │ └── TwoFactorAuthenticationTokenInvalid.php │ ├── Solutions │ │ └── ManifestDoesNotExistSolution.php │ └── Transformer │ │ └── InvalidTransformerLevelException.php ├── Extensions │ ├── Backups │ │ └── BackupManager.php │ ├── DynamicDatabaseConnection.php │ ├── Facades │ │ └── Theme.php │ ├── Filesystem │ │ └── S3Filesystem.php │ ├── Hashids.php │ ├── Illuminate │ │ ├── Database │ │ │ └── Eloquent │ │ │ │ └── Builder.php │ │ └── Events │ │ │ └── Contracts │ │ │ └── SubscribesToEvents.php │ ├── Laravel │ │ └── Sanctum │ │ │ └── NewAccessToken.php │ ├── Lcobucci │ │ └── JWT │ │ │ └── Encoding │ │ │ └── TimestampDates.php │ ├── League │ │ └── Fractal │ │ │ └── Serializers │ │ │ └── PterodactylSerializer.php │ ├── Spatie │ │ └── Fractalistic │ │ │ └── Fractal.php │ └── Themes │ │ └── Theme.php ├── Facades │ ├── Activity.php │ ├── LogBatch.php │ └── LogTarget.php ├── Helpers │ ├── Time.php │ └── Utilities.php ├── Http │ ├── Controllers │ │ ├── Admin │ │ │ ├── ApiController.php │ │ │ ├── BaseController.php │ │ │ ├── DatabaseController.php │ │ │ ├── LocationController.php │ │ │ ├── MountController.php │ │ │ ├── Nests │ │ │ │ ├── EggController.php │ │ │ │ ├── EggScriptController.php │ │ │ │ ├── EggShareController.php │ │ │ │ ├── EggVariableController.php │ │ │ │ └── NestController.php │ │ │ ├── NodeAutoDeployController.php │ │ │ ├── Nodes │ │ │ │ ├── NodeController.php │ │ │ │ ├── NodeViewController.php │ │ │ │ └── SystemInformationController.php │ │ │ ├── NodesController.php │ │ │ ├── Servers │ │ │ │ ├── CreateServerController.php │ │ │ │ ├── ServerController.php │ │ │ │ ├── ServerTransferController.php │ │ │ │ └── ServerViewController.php │ │ │ ├── ServersController.php │ │ │ ├── Settings │ │ │ │ ├── AdvancedController.php │ │ │ │ ├── CaptchaController.php │ │ │ │ ├── DomainsController.php │ │ │ │ ├── IndexController.php │ │ │ │ └── MailController.php │ │ │ └── UserController.php │ │ ├── Api │ │ │ ├── Application │ │ │ │ ├── ApplicationApiController.php │ │ │ │ ├── Locations │ │ │ │ │ └── LocationController.php │ │ │ │ ├── Nests │ │ │ │ │ ├── EggController.php │ │ │ │ │ └── NestController.php │ │ │ │ ├── Nodes │ │ │ │ │ ├── AllocationController.php │ │ │ │ │ ├── NodeConfigurationController.php │ │ │ │ │ ├── NodeController.php │ │ │ │ │ └── NodeDeploymentController.php │ │ │ │ ├── Servers │ │ │ │ │ ├── DatabaseController.php │ │ │ │ │ ├── ExternalServerController.php │ │ │ │ │ ├── ServerController.php │ │ │ │ │ ├── ServerDetailsController.php │ │ │ │ │ ├── ServerManagementController.php │ │ │ │ │ └── StartupController.php │ │ │ │ └── Users │ │ │ │ │ ├── ExternalUserController.php │ │ │ │ │ └── UserController.php │ │ │ ├── Client │ │ │ │ ├── AccountController.php │ │ │ │ ├── ActivityLogController.php │ │ │ │ ├── ApiKeyController.php │ │ │ │ ├── ClientApiController.php │ │ │ │ ├── ClientController.php │ │ │ │ ├── Nests │ │ │ │ │ ├── EggController.php │ │ │ │ │ └── NestController.php │ │ │ │ ├── SSHKeyController.php │ │ │ │ ├── Servers │ │ │ │ │ ├── ActivityLogController.php │ │ │ │ │ ├── BackupsController.php │ │ │ │ │ ├── CommandController.php │ │ │ │ │ ├── DatabaseController.php │ │ │ │ │ ├── ElytraJobsController.php │ │ │ │ │ ├── FileController.php │ │ │ │ │ ├── FileUploadController.php │ │ │ │ │ ├── NetworkAllocationController.php │ │ │ │ │ ├── PowerController.php │ │ │ │ │ ├── ResourceUtilizationController.php │ │ │ │ │ ├── ScheduleController.php │ │ │ │ │ ├── ScheduleTaskController.php │ │ │ │ │ ├── ServerController.php │ │ │ │ │ ├── SettingsController.php │ │ │ │ │ ├── StartupController.php │ │ │ │ │ ├── SubdomainController.php │ │ │ │ │ ├── SubuserController.php │ │ │ │ │ └── WebsocketController.php │ │ │ │ └── TwoFactorController.php │ │ │ └── Remote │ │ │ │ ├── ActivityProcessingController.php │ │ │ │ ├── Backups │ │ │ │ ├── BackupDeleteController.php │ │ │ │ ├── BackupRemoteUploadController.php │ │ │ │ ├── BackupSizeController.php │ │ │ │ └── BackupStatusController.php │ │ │ │ ├── EggInstallController.php │ │ │ │ ├── ElytraJobCompletionController.php │ │ │ │ ├── RusticConfigController.php │ │ │ │ ├── Servers │ │ │ │ ├── ServerDetailsController.php │ │ │ │ ├── ServerInstallController.php │ │ │ │ └── ServerTransferController.php │ │ │ │ └── SftpAuthenticationController.php │ │ ├── Auth │ │ │ ├── AbstractLoginController.php │ │ │ ├── ForgotPasswordController.php │ │ │ ├── LoginCheckpointController.php │ │ │ ├── LoginController.php │ │ │ └── ResetPasswordController.php │ │ ├── Base │ │ │ ├── IndexController.php │ │ │ ├── LocaleController.php │ │ │ └── SystemStatusController.php │ │ └── Controller.php │ ├── Kernel.php │ ├── Middleware │ │ ├── Activity │ │ │ ├── AccountSubject.php │ │ │ ├── ServerSubject.php │ │ │ └── TrackAPIKey.php │ │ ├── Admin │ │ │ └── Servers │ │ │ │ └── ServerInstalled.php │ │ ├── AdminAuthenticate.php │ │ ├── Api │ │ │ ├── Application │ │ │ │ └── AuthenticateApplicationUser.php │ │ │ ├── AuthenticateIPAccess.php │ │ │ ├── Client │ │ │ │ ├── RequireClientApiKey.php │ │ │ │ ├── Server │ │ │ │ │ ├── AuthenticateServerAccess.php │ │ │ │ │ ├── ResourceBelongsToServer.php │ │ │ │ │ └── ServerOperationRateLimit.php │ │ │ │ └── SubstituteClientBindings.php │ │ │ ├── Daemon │ │ │ │ └── DaemonAuthenticate.php │ │ │ └── IsValidJson.php │ │ ├── EncryptCookies.php │ │ ├── EnsureStatefulRequests.php │ │ ├── LanguageMiddleware.php │ │ ├── MaintenanceMiddleware.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── RequireTwoFactorAuthentication.php │ │ ├── TrimStrings.php │ │ ├── VerifyCaptcha.php │ │ └── VerifyCsrfToken.php │ ├── Requests │ │ ├── Admin │ │ │ ├── AdminFormRequest.php │ │ │ ├── Api │ │ │ │ └── StoreApplicationApiKeyRequest.php │ │ │ ├── BaseFormRequest.php │ │ │ ├── DatabaseHostFormRequest.php │ │ │ ├── Egg │ │ │ │ ├── EggFormRequest.php │ │ │ │ ├── EggImportFormRequest.php │ │ │ │ ├── EggImportUrlFormRequest.php │ │ │ │ ├── EggScriptFormRequest.php │ │ │ │ └── EggVariableFormRequest.php │ │ │ ├── LocationFormRequest.php │ │ │ ├── MountFormRequest.php │ │ │ ├── Nest │ │ │ │ └── StoreNestFormRequest.php │ │ │ ├── NewUserFormRequest.php │ │ │ ├── Node │ │ │ │ ├── AllocationAliasFormRequest.php │ │ │ │ ├── AllocationFormRequest.php │ │ │ │ └── NodeFormRequest.php │ │ │ ├── ServerFormRequest.php │ │ │ ├── Servers │ │ │ │ └── Databases │ │ │ │ │ └── StoreServerDatabaseRequest.php │ │ │ ├── Settings │ │ │ │ ├── AdvancedSettingsFormRequest.php │ │ │ │ ├── BaseSettingsFormRequest.php │ │ │ │ ├── CaptchaSettingsFormRequest.php │ │ │ │ ├── DomainFormRequest.php │ │ │ │ └── MailSettingsFormRequest.php │ │ │ └── UserFormRequest.php │ │ ├── Api │ │ │ ├── Application │ │ │ │ ├── Allocations │ │ │ │ │ ├── DeleteAllocationRequest.php │ │ │ │ │ ├── GetAllocationsRequest.php │ │ │ │ │ └── StoreAllocationRequest.php │ │ │ │ ├── ApplicationApiRequest.php │ │ │ │ ├── Locations │ │ │ │ │ ├── DeleteLocationRequest.php │ │ │ │ │ ├── GetLocationRequest.php │ │ │ │ │ ├── GetLocationsRequest.php │ │ │ │ │ ├── StoreLocationRequest.php │ │ │ │ │ └── UpdateLocationRequest.php │ │ │ │ ├── Nests │ │ │ │ │ ├── Eggs │ │ │ │ │ │ ├── GetEggRequest.php │ │ │ │ │ │ └── GetEggsRequest.php │ │ │ │ │ └── GetNestsRequest.php │ │ │ │ ├── Nodes │ │ │ │ │ ├── DeleteNodeRequest.php │ │ │ │ │ ├── GetDeployableNodesRequest.php │ │ │ │ │ ├── GetNodeRequest.php │ │ │ │ │ ├── GetNodesRequest.php │ │ │ │ │ ├── StoreNodeRequest.php │ │ │ │ │ └── UpdateNodeRequest.php │ │ │ │ ├── Servers │ │ │ │ │ ├── Databases │ │ │ │ │ │ ├── GetServerDatabaseRequest.php │ │ │ │ │ │ ├── GetServerDatabasesRequest.php │ │ │ │ │ │ ├── ServerDatabaseWriteRequest.php │ │ │ │ │ │ └── StoreServerDatabaseRequest.php │ │ │ │ │ ├── GetExternalServerRequest.php │ │ │ │ │ ├── GetServerRequest.php │ │ │ │ │ ├── GetServersRequest.php │ │ │ │ │ ├── ServerWriteRequest.php │ │ │ │ │ ├── StoreServerRequest.php │ │ │ │ │ ├── UpdateServerBuildConfigurationRequest.php │ │ │ │ │ ├── UpdateServerDetailsRequest.php │ │ │ │ │ └── UpdateServerStartupRequest.php │ │ │ │ └── Users │ │ │ │ │ ├── DeleteUserRequest.php │ │ │ │ │ ├── GetExternalUserRequest.php │ │ │ │ │ ├── GetUsersRequest.php │ │ │ │ │ ├── StoreUserRequest.php │ │ │ │ │ └── UpdateUserRequest.php │ │ │ ├── Client │ │ │ │ ├── Account │ │ │ │ │ ├── StoreApiKeyRequest.php │ │ │ │ │ ├── StoreSSHKeyRequest.php │ │ │ │ │ ├── UpdateEmailRequest.php │ │ │ │ │ └── UpdatePasswordRequest.php │ │ │ │ ├── ClientApiRequest.php │ │ │ │ ├── GetServersRequest.php │ │ │ │ └── Servers │ │ │ │ │ ├── Backups │ │ │ │ │ ├── RestoreBackupRequest.php │ │ │ │ │ └── StoreBackupRequest.php │ │ │ │ │ ├── Databases │ │ │ │ │ ├── DeleteDatabaseRequest.php │ │ │ │ │ ├── GetDatabasesRequest.php │ │ │ │ │ ├── RotatePasswordRequest.php │ │ │ │ │ └── StoreDatabaseRequest.php │ │ │ │ │ ├── Files │ │ │ │ │ ├── ChmodFilesRequest.php │ │ │ │ │ ├── CompressFilesRequest.php │ │ │ │ │ ├── CopyFileRequest.php │ │ │ │ │ ├── CreateFolderRequest.php │ │ │ │ │ ├── DecompressFilesRequest.php │ │ │ │ │ ├── DeleteFileRequest.php │ │ │ │ │ ├── DownloadFileRequest.php │ │ │ │ │ ├── GetFileContentsRequest.php │ │ │ │ │ ├── ListFilesRequest.php │ │ │ │ │ ├── PullFileRequest.php │ │ │ │ │ ├── RenameFileRequest.php │ │ │ │ │ ├── UploadFileRequest.php │ │ │ │ │ └── WriteFileContentRequest.php │ │ │ │ │ ├── GetServerRequest.php │ │ │ │ │ ├── Network │ │ │ │ │ ├── DeleteAllocationRequest.php │ │ │ │ │ ├── GetNetworkRequest.php │ │ │ │ │ ├── NewAllocationRequest.php │ │ │ │ │ ├── SetPrimaryAllocationRequest.php │ │ │ │ │ └── UpdateAllocationRequest.php │ │ │ │ │ ├── Schedules │ │ │ │ │ ├── DeleteScheduleRequest.php │ │ │ │ │ ├── StoreScheduleRequest.php │ │ │ │ │ ├── StoreTaskRequest.php │ │ │ │ │ ├── TriggerScheduleRequest.php │ │ │ │ │ ├── UpdateScheduleRequest.php │ │ │ │ │ └── ViewScheduleRequest.php │ │ │ │ │ ├── SendCommandRequest.php │ │ │ │ │ ├── SendPowerRequest.php │ │ │ │ │ ├── Settings │ │ │ │ │ ├── ApplyEggChangeRequest.php │ │ │ │ │ ├── PreviewEggRequest.php │ │ │ │ │ ├── ReinstallServerRequest.php │ │ │ │ │ ├── RenameServerRequest.php │ │ │ │ │ ├── RevertDockerImageRequest.php │ │ │ │ │ ├── ServerOperationRequest.php │ │ │ │ │ ├── SetDockerImageRequest.php │ │ │ │ │ └── SetEggRequest.php │ │ │ │ │ ├── Startup │ │ │ │ │ ├── GetStartupRequest.php │ │ │ │ │ ├── UpdateStartupCommandRequest.php │ │ │ │ │ └── UpdateStartupVariableRequest.php │ │ │ │ │ ├── Subdomain │ │ │ │ │ └── CreateSubdomainRequest.php │ │ │ │ │ └── Subusers │ │ │ │ │ ├── DeleteSubuserRequest.php │ │ │ │ │ ├── GetSubuserRequest.php │ │ │ │ │ ├── StoreSubuserRequest.php │ │ │ │ │ ├── SubuserRequest.php │ │ │ │ │ └── UpdateSubuserRequest.php │ │ │ └── Remote │ │ │ │ ├── ActivityEventRequest.php │ │ │ │ ├── AuthenticateWebsocketDetailsRequest.php │ │ │ │ ├── ElytraJobCompleteRequest.php │ │ │ │ ├── InstallationDataRequest.php │ │ │ │ ├── ReportBackupCompleteRequest.php │ │ │ │ ├── ReportJobCompleteRequest.php │ │ │ │ └── SftpAuthenticationFormRequest.php │ │ ├── Auth │ │ │ ├── LoginCheckpointRequest.php │ │ │ ├── LoginRequest.php │ │ │ └── ResetPasswordRequest.php │ │ ├── Base │ │ │ └── LocaleRequest.php │ │ └── FrontendUserFormRequest.php │ ├── Resources │ │ ├── ServerOperationResource.php │ │ └── Wings │ │ │ └── ServerConfigurationCollection.php │ └── ViewComposers │ │ └── AssetComposer.php ├── Jobs │ ├── Job.php │ ├── Schedule │ │ └── RunTaskJob.php │ └── Server │ │ └── ApplyEggChangeJob.php ├── Listeners │ └── Auth │ │ ├── AuthenticationListener.php │ │ ├── PasswordResetListener.php │ │ └── TwoFactorListener.php ├── Models │ ├── APILog.php │ ├── ActivityLog.php │ ├── ActivityLogSubject.php │ ├── Allocation.php │ ├── ApiKey.php │ ├── AuditLog.php │ ├── Backup.php │ ├── Database.php │ ├── DatabaseHost.php │ ├── Domain.php │ ├── Egg.php │ ├── EggMount.php │ ├── EggVariable.php │ ├── ElytraJob.php │ ├── Filters │ │ ├── AdminServerFilter.php │ │ └── MultiFieldServerFilter.php │ ├── Location.php │ ├── Model.php │ ├── Mount.php │ ├── MountNode.php │ ├── MountServer.php │ ├── Nest.php │ ├── Node.php │ ├── Objects │ │ └── DeploymentObject.php │ ├── Permission.php │ ├── RecoveryToken.php │ ├── Schedule.php │ ├── Server.php │ ├── ServerOperation.php │ ├── ServerSubdomain.php │ ├── ServerTransfer.php │ ├── ServerVariable.php │ ├── Session.php │ ├── SessionActivity.php │ ├── Setting.php │ ├── Subuser.php │ ├── Task.php │ ├── TaskLog.php │ ├── Traits │ │ └── HasAccessTokens.php │ ├── User.php │ └── UserSSHKey.php ├── Notifications │ ├── AccountCreated.php │ ├── AddedToServer.php │ ├── MailTested.php │ ├── RemovedFromServer.php │ ├── SendPasswordReset.php │ └── ServerInstalled.php ├── Observers │ ├── AllocationObserver.php │ ├── EggObserver.php │ ├── EggVariableObserver.php │ ├── ServerObserver.php │ ├── SessionActivityObserver.php │ ├── SubuserObserver.php │ └── UserObserver.php ├── Policies │ ├── .gitkeep │ └── ServerPolicy.php ├── Providers │ ├── ActivityLogServiceProvider.php │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BackupsServiceProvider.php │ ├── BladeServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── CaptchaServiceProvider.php │ ├── EventServiceProvider.php │ ├── HashidsServiceProvider.php │ ├── ObserverServiceProvider.php │ ├── RepositoryServiceProvider.php │ ├── RouteServiceProvider.php │ ├── ServerOperationServiceProvider.php │ ├── SettingsServiceProvider.php │ ├── SubdomainServiceProvider.php │ └── ViewComposerServiceProvider.php ├── Repositories │ ├── Eloquent │ │ ├── AllocationRepository.php │ │ ├── ApiKeyRepository.php │ │ ├── DatabaseHostRepository.php │ │ ├── DatabaseRepository.php │ │ ├── EggRepository.php │ │ ├── EggVariableRepository.php │ │ ├── EloquentRepository.php │ │ ├── LocationRepository.php │ │ ├── MountRepository.php │ │ ├── NestRepository.php │ │ ├── NodeRepository.php │ │ ├── PermissionRepository.php │ │ ├── RecoveryTokenRepository.php │ │ ├── ScheduleRepository.php │ │ ├── ServerRepository.php │ │ ├── ServerVariableRepository.php │ │ ├── SessionRepository.php │ │ ├── SettingsRepository.php │ │ ├── SubuserRepository.php │ │ ├── TaskRepository.php │ │ └── UserRepository.php │ ├── Elytra │ │ └── ElytraRepository.php │ ├── Repository.php │ └── Wings │ │ ├── DaemonCommandRepository.php │ │ ├── DaemonConfigurationRepository.php │ │ ├── DaemonFileRepository.php │ │ ├── DaemonPowerRepository.php │ │ ├── DaemonRepository.php │ │ ├── DaemonServerRepository.php │ │ └── DaemonTransferRepository.php ├── Rules │ ├── Fqdn.php │ └── Username.php ├── Services │ ├── Acl │ │ └── Api │ │ │ └── AdminAcl.php │ ├── Activity │ │ ├── ActivityLogBatchService.php │ │ ├── ActivityLogService.php │ │ └── ActivityLogTargetableService.php │ ├── Allocations │ │ ├── AllocationDeletionService.php │ │ ├── AssignmentService.php │ │ └── FindAssignableAllocationService.php │ ├── Api │ │ └── KeyCreationService.php │ ├── Backups │ │ ├── DownloadLinkService.php │ │ └── ServerStateService.php │ ├── Captcha │ │ ├── CaptchaManager.php │ │ └── Providers │ │ │ ├── HCaptchaProvider.php │ │ │ ├── NullProvider.php │ │ │ ├── RecaptchaProvider.php │ │ │ └── TurnstileProvider.php │ ├── Databases │ │ ├── DatabaseManagementService.php │ │ ├── DatabasePasswordService.php │ │ ├── DeployServerDatabaseService.php │ │ └── Hosts │ │ │ ├── HostCreationService.php │ │ │ ├── HostDeletionService.php │ │ │ └── HostUpdateService.php │ ├── Deployment │ │ ├── AllocationSelectionService.php │ │ └── FindViableNodesService.php │ ├── Dns │ │ └── Providers │ │ │ ├── CloudflareProvider.php │ │ │ └── HetznerProvider.php │ ├── Eggs │ │ ├── EggConfigurationService.php │ │ ├── EggCreationService.php │ │ ├── EggDeletionService.php │ │ ├── EggParserService.php │ │ ├── EggUpdateService.php │ │ ├── Scripts │ │ │ └── InstallScriptService.php │ │ ├── Sharing │ │ │ ├── EggExporterService.php │ │ │ ├── EggImporterService.php │ │ │ └── EggUpdateImporterService.php │ │ └── Variables │ │ │ ├── VariableCreationService.php │ │ │ └── VariableUpdateService.php │ ├── Elytra │ │ ├── ElytraJobService.php │ │ └── Jobs │ │ │ └── BackupJob.php │ ├── Helpers │ │ └── SoftwareVersionService.php │ ├── Locations │ │ ├── LocationCreationService.php │ │ ├── LocationDeletionService.php │ │ └── LocationUpdateService.php │ ├── Nests │ │ ├── NestCreationService.php │ │ ├── NestDeletionService.php │ │ └── NestUpdateService.php │ ├── Nodes │ │ ├── NodeCreationService.php │ │ ├── NodeDeletionService.php │ │ ├── NodeJWTService.php │ │ └── NodeUpdateService.php │ ├── Schedules │ │ └── ProcessScheduleService.php │ ├── ServerOperations │ │ ├── EggChangeService.php │ │ ├── ServerOperationService.php │ │ └── ServerStateValidationService.php │ ├── Servers │ │ ├── BuildModificationService.php │ │ ├── DetailsModificationService.php │ │ ├── EnvironmentService.php │ │ ├── GetUserPermissionsService.php │ │ ├── ReinstallServerService.php │ │ ├── ServerConfigurationStructureService.php │ │ ├── ServerCreationService.php │ │ ├── ServerDeletionService.php │ │ ├── StartupCommandService.php │ │ ├── StartupCommandUpdateService.php │ │ ├── StartupModificationService.php │ │ ├── SuspensionService.php │ │ └── VariableValidatorService.php │ ├── Subdomain │ │ ├── Features │ │ │ ├── FactorioSubdomainFeature.php │ │ │ ├── MinecraftSubdomainFeature.php │ │ │ ├── RustSubdomainFeature.php │ │ │ ├── ScpSlSubdomainFeature.php │ │ │ └── TeamSpeakSubdomainFeature.php │ │ ├── SubdomainGeneratorService.php │ │ └── SubdomainManagementService.php │ ├── Subusers │ │ └── SubuserCreationService.php │ └── Users │ │ ├── ToggleTwoFactorService.php │ │ ├── TwoFactorSetupService.php │ │ ├── UserCreationService.php │ │ ├── UserDeletionService.php │ │ └── UserUpdateService.php ├── Traits │ ├── Commands │ │ └── EnvironmentWriterTrait.php │ ├── Controllers │ │ ├── JavascriptInjection.php │ │ └── PlainJavascriptInjection.php │ ├── Helpers │ │ └── AvailableLanguages.php │ └── Services │ │ ├── HasUserLevels.php │ │ ├── ReturnsUpdatedModels.php │ │ └── ValidatesValidationRules.php ├── Transformers │ └── Api │ │ ├── Application │ │ ├── AllocationTransformer.php │ │ ├── BaseTransformer.php │ │ ├── DatabaseHostTransformer.php │ │ ├── EggTransformer.php │ │ ├── EggVariableTransformer.php │ │ ├── LocationTransformer.php │ │ ├── NestTransformer.php │ │ ├── NodeTransformer.php │ │ ├── ServerDatabaseTransformer.php │ │ ├── ServerTransformer.php │ │ ├── ServerVariableTransformer.php │ │ ├── SubuserTransformer.php │ │ └── UserTransformer.php │ │ └── Client │ │ ├── AccountTransformer.php │ │ ├── ActivityLogTransformer.php │ │ ├── AllocationTransformer.php │ │ ├── ApiKeyTransformer.php │ │ ├── BackupTransformer.php │ │ ├── BaseClientTransformer.php │ │ ├── DatabaseTransformer.php │ │ ├── EggTransformer.php │ │ ├── EggVariableTransformer.php │ │ ├── FileObjectTransformer.php │ │ ├── NestTransformer.php │ │ ├── ScheduleTransformer.php │ │ ├── ServerSubdomainTransformer.php │ │ ├── ServerTransformer.php │ │ ├── StatsTransformer.php │ │ ├── SubuserTransformer.php │ │ ├── TaskTransformer.php │ │ ├── UserSSHKeyTransformer.php │ │ └── UserTransformer.php └── helpers.php ├── artisan ├── bootstrap ├── app.php ├── cache │ └── .gitignore └── tests.php ├── composer.json ├── composer.lock ├── config ├── activity.php ├── app.php ├── auth.php ├── backups.php ├── broadcasting.php ├── cache.php ├── captcha.php ├── compile.php ├── cors.php ├── database.php ├── egg_features │ └── eula.php ├── filesystems.php ├── fractal.php ├── hashids.php ├── hashing.php ├── http.php ├── javascript.php ├── logging.php ├── mail.php ├── prologue │ └── alerts.php ├── pterodactyl.php ├── queue.php ├── sanctum.php ├── server_operations.php ├── services.php ├── session.php ├── trustedproxy.php └── view.php ├── database ├── .gitignore ├── Factories │ ├── AllocationFactory.php │ ├── ApiKeyFactory.php │ ├── BackupFactory.php │ ├── DatabaseFactory.php │ ├── DatabaseHostFactory.php │ ├── EggFactory.php │ ├── EggVariableFactory.php │ ├── LocationFactory.php │ ├── NestFactory.php │ ├── NodeFactory.php │ ├── ScheduleFactory.php │ ├── ServerFactory.php │ ├── SubuserFactory.php │ ├── TaskFactory.php │ ├── UserFactory.php │ └── UserSSHKeyFactory.php ├── Seeders │ ├── .gitkeep │ ├── DatabaseSeeder.php │ ├── EggSeeder.php │ ├── NestSeeder.php │ └── eggs │ │ ├── minecraft │ │ ├── egg-bungeecord.json │ │ ├── egg-fabric.json │ │ ├── egg-forge-minecraft.json │ │ ├── egg-paper.json │ │ ├── egg-purpur.json │ │ ├── egg-sponge--sponge-vanilla.json │ │ └── egg-vanilla-minecraft.json │ │ ├── rust │ │ └── egg-rust.json │ │ ├── source-engine │ │ ├── egg-ark--survival-evolved.json │ │ ├── egg-counter--strike--global-offensive.json │ │ ├── egg-custom-source-engine-game.json │ │ ├── egg-garrys-mod.json │ │ ├── egg-insurgency.json │ │ └── egg-team-fortress2.json │ │ └── voice-servers │ │ ├── egg-mumble-server.json │ │ └── egg-teamspeak3-server.json ├── migrations │ ├── 2016_01_23_195641_add_allocations_table.php │ ├── 2016_01_23_195851_add_api_keys.php │ ├── 2016_01_23_200044_add_api_permissions.php │ ├── 2016_01_23_200159_add_downloads.php │ ├── 2016_01_23_200421_create_failed_jobs_table.php │ ├── 2016_01_23_200440_create_jobs_table.php │ ├── 2016_01_23_200528_add_locations.php │ ├── 2016_01_23_200648_add_nodes.php │ ├── 2016_01_23_201433_add_password_resets.php │ ├── 2016_01_23_201531_add_permissions.php │ ├── 2016_01_23_201649_add_server_variables.php │ ├── 2016_01_23_201748_add_servers.php │ ├── 2016_01_23_202544_add_service_options.php │ ├── 2016_01_23_202731_add_service_varibles.php │ ├── 2016_01_23_202943_add_services.php │ ├── 2016_01_23_203119_create_settings_table.php │ ├── 2016_01_23_203150_add_subusers.php │ ├── 2016_01_23_203159_add_users.php │ ├── 2016_01_23_203947_create_sessions_table.php │ ├── 2016_01_25_234418_rename_permissions_column.php │ ├── 2016_02_07_172148_add_databases_tables.php │ ├── 2016_02_07_181319_add_database_servers_table.php │ ├── 2016_02_13_154306_add_service_option_default_startup.php │ ├── 2016_02_20_155318_add_unique_service_field.php │ ├── 2016_02_27_163411_add_tasks_table.php │ ├── 2016_02_27_163447_add_tasks_log_table.php │ ├── 2016_03_18_155649_add_nullable_field_lastrun.php │ ├── 2016_08_30_212718_add_ip_alias.php │ ├── 2016_08_30_213301_modify_ip_storage_method.php │ ├── 2016_09_01_193520_add_suspension_for_servers.php │ ├── 2016_09_01_211924_remove_active_column.php │ ├── 2016_09_02_190647_add_sftp_password_storage.php │ ├── 2016_09_04_171338_update_jobs_tables.php │ ├── 2016_09_04_172028_update_failed_jobs_table.php │ ├── 2016_09_04_182835_create_notifications_table.php │ ├── 2016_09_07_163017_add_unique_identifier.php │ ├── 2016_09_14_145945_allow_longer_regex_field.php │ ├── 2016_09_17_194246_add_docker_image_column.php │ ├── 2016_09_21_165554_update_servers_column_name.php │ ├── 2016_09_29_213518_rename_double_insurgency.php │ ├── 2016_10_07_152117_build_api_log_table.php │ ├── 2016_10_14_164802_update_api_keys.php │ ├── 2016_10_23_181719_update_misnamed_bungee.php │ ├── 2016_10_23_193810_add_foreign_keys_servers.php │ ├── 2016_10_23_201624_add_foreign_allocations.php │ ├── 2016_10_23_202222_add_foreign_api_keys.php │ ├── 2016_10_23_202703_add_foreign_api_permissions.php │ ├── 2016_10_23_202953_add_foreign_database_servers.php │ ├── 2016_10_23_203105_add_foreign_databases.php │ ├── 2016_10_23_203335_add_foreign_nodes.php │ ├── 2016_10_23_203522_add_foreign_permissions.php │ ├── 2016_10_23_203857_add_foreign_server_variables.php │ ├── 2016_10_23_204157_add_foreign_service_options.php │ ├── 2016_10_23_204321_add_foreign_service_variables.php │ ├── 2016_10_23_204454_add_foreign_subusers.php │ ├── 2016_10_23_204610_add_foreign_tasks.php │ ├── 2016_11_04_000949_add_ark_service_option_fixed.php │ ├── 2016_11_11_220649_add_pack_support.php │ ├── 2016_11_11_231731_set_service_name_unique.php │ ├── 2016_11_27_142519_add_pack_column.php │ ├── 2016_12_01_173018_add_configurable_upload_limit.php │ ├── 2016_12_02_185206_correct_service_variables.php │ ├── 2017_01_03_150436_fix_misnamed_option_tag.php │ ├── 2017_01_07_154228_create_node_configuration_tokens_table.php │ ├── 2017_01_12_135449_add_more_user_data.php │ ├── 2017_02_02_175548_UpdateColumnNames.php │ ├── 2017_02_03_140948_UpdateNodesTable.php │ ├── 2017_02_03_155554_RenameColumns.php │ ├── 2017_02_05_164123_AdjustColumnNames.php │ ├── 2017_02_05_164516_AdjustColumnNamesForServicePacks.php │ ├── 2017_02_09_174834_SetupPermissionsPivotTable.php │ ├── 2017_02_10_171858_UpdateAPIKeyColumnNames.php │ ├── 2017_03_03_224254_UpdateNodeConfigTokensColumns.php │ ├── 2017_03_05_212803_DeleteServiceExecutableOption.php │ ├── 2017_03_10_162934_AddNewServiceOptionsColumns.php │ ├── 2017_03_10_173607_MigrateToNewServiceSystem.php │ ├── 2017_03_11_215455_ChangeServiceVariablesValidationRules.php │ ├── 2017_03_12_150648_MoveFunctionsFromFileToDatabase.php │ ├── 2017_03_14_175631_RenameServicePacksToSingluarPacks.php │ ├── 2017_03_14_200326_AddLockedStatusToTable.php │ ├── 2017_03_16_181109_ReOrganizeDatabaseServersToDatabaseHost.php │ ├── 2017_03_16_181515_CleanupDatabasesDatabase.php │ ├── 2017_03_18_204953_AddForeignKeyToPacks.php │ ├── 2017_03_31_221948_AddServerDescriptionColumn.php │ ├── 2017_04_02_163232_DropDeletedAtColumnFromServers.php │ ├── 2017_04_15_125021_UpgradeTaskSystem.php │ ├── 2017_04_20_171943_AddScriptsToServiceOptions.php │ ├── 2017_04_21_151432_AddServiceScriptTrackingToServers.php │ ├── 2017_04_27_145300_AddCopyScriptFromColumn.php │ ├── 2017_04_27_223629_AddAbilityToDefineConnectionOverSSLWithDaemonBehindProxy.php │ ├── 2017_05_01_141528_DeleteDownloadTable.php │ ├── 2017_05_01_141559_DeleteNodeConfigurationTable.php │ ├── 2017_06_10_152951_add_external_id_to_users.php │ ├── 2017_06_25_133923_ChangeForeignKeyToBeOnCascadeDelete.php │ ├── 2017_07_08_152806_ChangeUserPermissionsToDeleteOnUserDeletion.php │ ├── 2017_07_08_154416_SetAllocationToReferenceNullOnServerDelete.php │ ├── 2017_07_08_154650_CascadeDeletionWhenAServerOrVariableIsDeleted.php │ ├── 2017_07_24_194433_DeleteTaskWhenParentServerIsDeleted.php │ ├── 2017_08_05_115800_CascadeNullValuesForDatabaseHostWhenNodeIsDeleted.php │ ├── 2017_08_05_144104_AllowNegativeValuesForOverallocation.php │ ├── 2017_08_05_174811_SetAllocationUnqiueUsingMultipleFields.php │ ├── 2017_08_15_214555_CascadeDeletionWhenAParentServiceIsDeleted.php │ ├── 2017_08_18_215428_RemovePackWhenParentServiceOptionIsDeleted.php │ ├── 2017_09_10_225749_RenameTasksTableForStructureRefactor.php │ ├── 2017_09_10_225941_CreateSchedulesTable.php │ ├── 2017_09_10_230309_CreateNewTasksTableForSchedules.php │ ├── 2017_09_11_002938_TransferOldTasksToNewScheduler.php │ ├── 2017_09_13_211810_UpdateOldPermissionsToPointToNewScheduleSystem.php │ ├── 2017_09_23_170933_CreateDaemonKeysTable.php │ ├── 2017_09_23_173628_RemoveDaemonSecretFromServersTable.php │ ├── 2017_09_23_185022_RemoveDaemonSecretFromSubusersTable.php │ ├── 2017_10_02_202000_ChangeServicesToUseAMoreUniqueIdentifier.php │ ├── 2017_10_02_202007_ChangeToABetterUniqueServiceConfiguration.php │ ├── 2017_10_03_233202_CascadeDeletionWhenServiceOptionIsDeleted.php │ ├── 2017_10_06_214026_ServicesToNestsConversion.php │ ├── 2017_10_06_214053_ServiceOptionsToEggsConversion.php │ ├── 2017_10_06_215741_ServiceVariablesToEggVariablesConversion.php │ ├── 2017_10_24_222238_RemoveLegacySFTPInformation.php │ ├── 2017_11_11_161922_Add2FaLastAuthorizationTimeColumn.php │ ├── 2017_11_19_122708_MigratePubPrivFormatToSingleKey.php │ ├── 2017_12_04_184012_DropAllocationsWhenNodeIsDeleted.php │ ├── 2017_12_12_220426_MigrateSettingsTableToNewFormat.php │ ├── 2018_01_01_122821_AllowNegativeValuesForServerSwap.php │ ├── 2018_01_11_213943_AddApiKeyPermissionColumns.php │ ├── 2018_01_13_142012_SetupTableForKeyEncryption.php │ ├── 2018_01_13_145209_AddLastUsedAtColumn.php │ ├── 2018_02_04_145617_AllowTextInUserExternalId.php │ ├── 2018_02_10_151150_remove_unique_index_on_external_id_column.php │ ├── 2018_02_17_134254_ensure_unique_allocation_id_on_servers_table.php │ ├── 2018_02_24_112356_add_external_id_column_to_servers_table.php │ ├── 2018_02_25_160152_remove_default_null_value_on_table.php │ ├── 2018_02_25_160604_define_unique_index_on_users_external_id.php │ ├── 2018_03_01_192831_add_database_and_port_limit_columns_to_servers_table.php │ ├── 2018_03_15_124536_add_description_to_nodes.php │ ├── 2018_05_04_123826_add_maintenance_to_nodes.php │ ├── 2018_09_03_143756_allow_egg_variables_to_have_longer_values.php │ ├── 2018_09_03_144005_allow_server_variables_to_have_longer_values.php │ ├── 2019_03_02_142328_set_allocation_limit_default_null.php │ ├── 2019_03_02_151321_fix_unique_index_to_account_for_host.php │ ├── 2020_03_22_163911_merge_permissions_table_into_subusers.php │ ├── 2020_03_22_164814_drop_permissions_table.php │ ├── 2020_04_03_203624_add_threads_column_to_servers_table.php │ ├── 2020_04_03_230614_create_backups_table.php │ ├── 2020_04_04_131016_add_table_server_transfers.php │ ├── 2020_04_10_141024_store_node_tokens_as_encrypted_value.php │ ├── 2020_04_17_203438_allow_nullable_descriptions.php │ ├── 2020_04_22_055500_add_max_connections_column.php │ ├── 2020_04_26_111208_add_backup_limit_to_servers.php │ ├── 2020_05_20_234655_add_mounts_table.php │ ├── 2020_05_21_192756_add_mount_server_table.php │ ├── 2020_07_02_213612_create_user_recovery_tokens_table.php │ ├── 2020_07_09_201845_add_notes_column_for_allocations.php │ ├── 2020_08_20_205533_add_backup_state_column_to_backups.php │ ├── 2020_08_22_132500_update_bytes_to_unsigned_bigint.php │ ├── 2020_08_23_175331_modify_checksums_column_for_backups.php │ ├── 2020_09_13_110007_drop_packs_from_servers.php │ ├── 2020_09_13_110021_drop_packs_from_api_key_permissions.php │ ├── 2020_09_13_110047_drop_packs_table.php │ ├── 2020_09_13_113503_drop_daemon_key_table.php │ ├── 2020_10_10_165437_change_unique_database_name_to_account_for_server.php │ ├── 2020_10_26_194904_remove_nullable_from_schedule_name_field.php │ ├── 2020_11_02_201014_add_features_column_to_eggs.php │ ├── 2020_12_12_102435_support_multiple_docker_images_and_updates.php │ ├── 2020_12_14_013707_make_successful_nullable_in_server_transfers.php │ ├── 2020_12_17_014330_add_archived_field_to_server_transfers_table.php │ ├── 2020_12_24_092449_make_allocation_fields_json.php │ ├── 2020_12_26_184914_add_upload_id_column_to_backups_table.php │ ├── 2021_01_10_153937_add_file_denylist_to_egg_configs.php │ ├── 2021_01_13_013420_add_cron_month.php │ ├── 2021_01_17_102401_create_audit_logs_table.php │ ├── 2021_01_17_152623_add_generic_server_status_column.php │ ├── 2021_01_26_210502_update_file_denylist_to_json.php │ ├── 2021_02_23_205021_add_index_for_server_and_action.php │ ├── 2021_02_23_212657_make_sftp_port_unsigned_int.php │ ├── 2021_03_21_104718_force_cron_month_field_to_have_value_if_missing.php │ ├── 2021_05_01_092457_add_continue_on_failure_option_to_tasks.php │ ├── 2021_05_01_092523_add_only_run_when_server_online_option_to_schedules.php │ ├── 2021_05_03_201016_add_support_for_locking_a_backup.php │ ├── 2021_07_12_013420_remove_userinteraction.php │ ├── 2021_07_17_211512_create_user_ssh_keys_table.php │ ├── 2021_08_03_210600_change_successful_field_to_default_to_false_on_backups_table.php │ ├── 2021_08_21_175111_add_foreign_keys_to_mount_node_table.php │ ├── 2021_08_21_175118_add_foreign_keys_to_mount_server_table.php │ ├── 2021_08_21_180921_add_foreign_keys_to_egg_mount_table.php │ ├── 2022_01_25_030847_drop_google_analytics.php │ ├── 2022_05_07_165334_migrate_egg_images_array_to_new_format.php │ ├── 2022_05_28_135717_create_activity_logs_table.php │ ├── 2022_05_29_140349_create_activity_log_actors_table.php │ ├── 2022_06_18_112822_track_api_key_usage_for_activity_events.php │ ├── 2022_08_16_214400_add_force_outgoing_ip_column_to_eggs_table.php │ ├── 2022_08_16_230204_add_installed_at_column_to_servers_table.php │ ├── 2022_12_12_213937_update_mail_settings_to_new_format.php │ ├── 2023_01_24_210051_add_uuid_column_to_failed_jobs_table.php │ ├── 2023_02_23_191004_add_expires_at_column_to_api_keys_table.php │ ├── 2024_12_31_035423_make_external_id_nullable.php │ ├── 2025_01_21_000000_add_schedules_performance_index.php │ ├── 2025_01_21_000002_add_unique_constraint_to_tasks_sequence.php │ ├── 2025_02_26_181216_alter_language_column_in_users_table.php │ ├── 2025_05_25_230411_add_internal_fqdn_to_nodes_table.php │ ├── 2025_06_11_add_is_processing_to_tasks.php │ ├── 2025_08_06_192246_add_overhead_memory_to_servers_table.php │ ├── 2025_08_14_025040_create_server_operations_table.php │ ├── 2025_08_16_000000_add_server_state_to_backups.php │ ├── 2025_08_17_225800_add_exclude_from_resource_calculation_to_servers_table.php │ ├── 2025_09_07_000001_create_subdomain_system.php │ ├── 2025_09_19_000000_add_rustic_backup_support.php │ ├── 2025_09_20_000000_add_backup_storage_limit_to_servers.php │ ├── 2025_09_20_000002_make_server_limits_nullable.php │ ├── 2025_09_22_171337_add_trusted_alias_to_nodes_table.php │ ├── 2025_09_27_101200_create_elytra_jobs_table.php │ ├── 2025_10_01_000000_add_repository_backup_bytes_to_servers.php │ └── 2025_10_03_000000_add_is_automatic_to_backups.php └── schema │ └── mysql-schema.sql ├── docker-compose.develop.yml ├── docker-compose.example.yml ├── eslint.config.js ├── nix ├── buildsteps.sh ├── caddyfile └── docker │ ├── maria │ └── docker-compose.yml │ └── wings │ └── docker-compose.yml ├── package.json ├── phpstan.neon ├── phpunit.xml ├── pnpm-lock.yaml ├── postcss.config.js ├── public ├── .gitignore ├── .htaccess ├── assets │ └── svgs │ │ ├── not_found.svg │ │ ├── pterodactyl.svg │ │ ├── server_error.svg │ │ └── server_installing.svg ├── favicons │ ├── apple-touch-icon.png │ ├── favicon-96x96.png │ ├── favicon.ico │ ├── favicon.svg │ ├── site.webmanifest │ ├── web-app-manifest-192x192.png │ └── web-app-manifest-512x512.png ├── index.php ├── js │ ├── autocomplete.js │ ├── keyboard.polyfill.js │ └── laroute.js ├── robots.txt └── themes │ └── pterodactyl │ ├── css │ ├── checkbox.css │ ├── pterodactyl.css │ └── terminal.css │ ├── js │ ├── admin │ │ ├── functions.js │ │ ├── new-server.js │ │ └── server │ │ │ └── transfer.js │ └── plugins │ │ └── minecraft │ │ └── eula.js │ └── vendor │ ├── ace │ ├── ace.js │ ├── ext-elastic_tabstops_lite.js │ ├── ext-error_marker.js │ ├── ext-linking.js │ ├── ext-modelist.js │ ├── ext-old_ie.js │ ├── ext-searchbox.js │ ├── ext-settings_menu.js │ ├── ext-spellcheck.js │ ├── ext-split.js │ ├── ext-static_highlight.js │ ├── ext-textarea.js │ ├── ext-themelist.js │ ├── ext-whitespace.js │ ├── keybinding-emacs.js │ ├── keybinding-vim.js │ ├── mode-assembly_x86.js │ ├── mode-c_cpp.js │ ├── mode-coffee.js │ ├── mode-csharp.js │ ├── mode-css.js │ ├── mode-golang.js │ ├── mode-haml.js │ ├── mode-html.js │ ├── mode-ini.js │ ├── mode-java.js │ ├── mode-javascript.js │ ├── mode-json.js │ ├── mode-kotlin.js │ ├── mode-lua.js │ ├── mode-markdown.js │ ├── mode-mysql.js │ ├── mode-objectivec.js │ ├── mode-perl.js │ ├── mode-php.js │ ├── mode-plain_text.js │ ├── mode-properties.js │ ├── mode-python.js │ ├── mode-ruby.js │ ├── mode-rust.js │ ├── mode-sh.js │ ├── mode-smarty.js │ ├── mode-sql.js │ ├── mode-xml.js │ ├── mode-yaml.js │ ├── theme-chrome.js │ ├── worker-css.js │ ├── worker-html.js │ ├── worker-javascript.js │ ├── worker-json.js │ ├── worker-lua.js │ ├── worker-php.js │ └── worker-xml.js │ ├── adminlte │ ├── admin.min.css │ ├── adminlte.min.css.map │ ├── app.min.js │ └── colors │ │ └── skin-blue.min.css │ ├── animate │ └── animate.min.css │ ├── ansi │ └── ansi_up.js │ ├── async │ ├── async.min.js │ └── async.min.map │ ├── bootstrap-notify │ └── bootstrap-notify.min.js │ ├── bootstrap │ ├── bootstrap-theme.min.css │ ├── bootstrap-theme.min.css.map │ ├── bootstrap.min.css │ ├── bootstrap.min.css.map │ └── bootstrap.min.js │ ├── chartjs │ └── chart.min.js │ ├── fontawesome │ └── animation.min.css │ ├── jquery │ ├── date-format.min.js │ ├── jquery.js │ ├── jquery.min.js │ └── jquery.min.map │ ├── lodash │ └── lodash.js │ ├── mousewheel │ └── jquery.mousewheel-min.js │ ├── particlesjs │ ├── particles.json │ └── particles.min.js │ ├── select2 │ ├── select2.full.min.js │ └── select2.min.css │ ├── siofu │ └── client.min.js │ ├── slimscroll │ └── jquery.slimscroll.min.js │ ├── socketio │ ├── socket.io.js.map │ └── socket.io.v203.min.js │ └── sweetalert │ ├── sweetalert.min.css │ └── sweetalert.min.js ├── resources ├── css │ └── app.css ├── lang │ └── en │ │ ├── activity.php │ │ ├── admin │ │ ├── nests.php │ │ ├── node.php │ │ ├── server.php │ │ └── user.php │ │ ├── auth.php │ │ ├── command │ │ └── messages.php │ │ ├── dashboard │ │ ├── account.php │ │ └── index.php │ │ ├── exceptions.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── server │ │ └── users.php │ │ ├── strings.php │ │ └── validation.php ├── scripts │ ├── __mocks__ │ │ └── file.ts │ ├── api │ │ ├── account │ │ │ ├── activity.ts │ │ │ ├── createApiKey.ts │ │ │ ├── deleteApiKey.ts │ │ │ ├── disableAccountTwoFactor.ts │ │ │ ├── enableAccountTwoFactor.ts │ │ │ ├── getApiKeys.ts │ │ │ ├── getTwoFactorTokenData.ts │ │ │ ├── ssh-keys.ts │ │ │ ├── updateAccountEmail.ts │ │ │ └── updateAccountPassword.ts │ │ ├── auth │ │ │ ├── login.ts │ │ │ ├── loginCheckpoint.ts │ │ │ └── performPasswordReset.ts │ │ ├── definitions │ │ │ ├── helpers.ts │ │ │ ├── index.d.ts │ │ │ └── user │ │ │ │ ├── index.ts │ │ │ │ ├── models.d.ts │ │ │ │ └── transformers.ts │ │ ├── getServers.ts │ │ ├── getSystemPermissions.ts │ │ ├── http.ts │ │ ├── interceptors.ts │ │ ├── mclo.gs │ │ │ └── mclogsApi.ts │ │ ├── nests │ │ │ └── getNests.ts │ │ ├── server │ │ │ ├── activity.ts │ │ │ ├── applyEggChange.ts │ │ │ ├── backups │ │ │ │ ├── createServerBackup.ts │ │ │ │ ├── deleteServerBackup.ts │ │ │ │ ├── getBackupStatus.ts │ │ │ │ ├── getServerBackupDownloadUrl.ts │ │ │ │ ├── index.ts │ │ │ │ ├── renameServerBackup.ts │ │ │ │ └── retryBackup.ts │ │ │ ├── databases │ │ │ │ ├── createServerDatabase.ts │ │ │ │ ├── deleteServerDatabase.ts │ │ │ │ ├── getServerDatabases.ts │ │ │ │ └── rotateDatabasePassword.ts │ │ │ ├── files │ │ │ │ ├── chmodFiles.ts │ │ │ │ ├── compressFiles.ts │ │ │ │ ├── copyFile.ts │ │ │ │ ├── createDirectory.ts │ │ │ │ ├── decompressFiles.ts │ │ │ │ ├── deleteFiles.ts │ │ │ │ ├── getFileContents.ts │ │ │ │ ├── getFileDownloadUrl.ts │ │ │ │ ├── getFileUploadUrl.ts │ │ │ │ ├── loadDirectory.ts │ │ │ │ ├── renameFiles.ts │ │ │ │ └── saveFileContents.ts │ │ │ ├── getServer.ts │ │ │ ├── getServerResourceUsage.ts │ │ │ ├── getWebsocketToken.ts │ │ │ ├── network │ │ │ │ ├── createServerAllocation.ts │ │ │ │ ├── deleteServerAllocation.ts │ │ │ │ ├── setPrimaryServerAllocation.ts │ │ │ │ ├── setServerAllocationNotes.ts │ │ │ │ └── subdomain.ts │ │ │ ├── previewEggChange.ts │ │ │ ├── processStartupCommand.ts │ │ │ ├── reinstallServer.ts │ │ │ ├── renameServer.ts │ │ │ ├── resetStartupCommand.ts │ │ │ ├── revertDockerImage.ts │ │ │ ├── schedules │ │ │ │ ├── createOrUpdateSchedule.ts │ │ │ │ ├── createOrUpdateScheduleTask.ts │ │ │ │ ├── deleteSchedule.ts │ │ │ │ ├── deleteScheduleTask.ts │ │ │ │ ├── getServerSchedule.ts │ │ │ │ ├── getServerSchedules.ts │ │ │ │ └── triggerScheduleExecution.ts │ │ │ ├── serverOperations.ts │ │ │ ├── setSelectedDockerImage.ts │ │ │ ├── types.d.ts │ │ │ ├── updateStartupCommand.ts │ │ │ ├── updateStartupVariable.ts │ │ │ └── users │ │ │ │ ├── createOrUpdateSubuser.ts │ │ │ │ ├── deleteSubuser.ts │ │ │ │ └── getServerSubusers.ts │ │ ├── swr │ │ │ ├── getServerAllocations.ts │ │ │ ├── getServerBackups.ts │ │ │ └── getServerStartup.ts │ │ └── transformers.ts │ ├── assets │ │ ├── css │ │ │ └── GlobalStylesheet.ts │ │ ├── globals.css │ │ ├── images │ │ │ ├── not_found.svg │ │ │ ├── pterodactyl.svg │ │ │ ├── server_error.svg │ │ │ ├── server_installing.svg │ │ │ └── server_restore.svg │ │ └── tailwind.css │ ├── components │ │ ├── App.tsx │ │ ├── FlashMessageRender.tsx │ │ ├── MessageBox.tsx │ │ ├── PyrodactylProvider.tsx │ │ ├── auth │ │ │ ├── ForgotPasswordContainer.tsx │ │ │ ├── LoginCheckpointContainer.tsx │ │ │ ├── LoginContainer.tsx │ │ │ ├── LoginFormContainer.tsx │ │ │ └── ResetPasswordContainer.tsx │ │ ├── dashboard │ │ │ ├── AccountApiContainer.tsx │ │ │ ├── AccountOverviewContainer.tsx │ │ │ ├── ApiKeyModal.tsx │ │ │ ├── DashboardContainer.tsx │ │ │ ├── ServerRow.tsx │ │ │ ├── activity │ │ │ │ └── ActivityLogContainer.tsx │ │ │ ├── forms │ │ │ │ ├── ConfigureTwoFactorForm.tsx │ │ │ │ ├── CreateApiKeyForm.tsx │ │ │ │ ├── DisableTOTPDialog.tsx │ │ │ │ ├── RecoveryTokensDialog.tsx │ │ │ │ ├── SetupTOTPDialog.tsx │ │ │ │ ├── UpdateEmailAddressForm.tsx │ │ │ │ └── UpdatePasswordForm.tsx │ │ │ └── ssh │ │ │ │ ├── AccountSSHContainer.tsx │ │ │ │ ├── CreateSSHKeyForm.tsx │ │ │ │ └── DeleteSSHKeyButton.tsx │ │ ├── elements │ │ │ ├── ActionButton.tsx │ │ │ ├── AuthenticatedRoute.tsx │ │ │ ├── Button.tsx │ │ │ ├── ButtonV2.tsx │ │ │ ├── Can.tsx │ │ │ ├── Captcha.tsx │ │ │ ├── CheckBoxArrow.tsx │ │ │ ├── CheckBoxMods.tsx │ │ │ ├── Checkbox.tsx │ │ │ ├── CheckboxLabel.tsx │ │ │ ├── CheckboxNew.tsx │ │ │ ├── Code.tsx │ │ │ ├── ConfirmationModal.tsx │ │ │ ├── ContentBox.tsx │ │ │ ├── ContextMenu.tsx │ │ │ ├── CopyOnClick.tsx │ │ │ ├── DropdownMenu.tsx │ │ │ ├── ErrorBoundary.tsx │ │ │ ├── Field.tsx │ │ │ ├── FormikFieldWrapper.tsx │ │ │ ├── FormikSwitch.tsx │ │ │ ├── FormikSwitchV2.tsx │ │ │ ├── Input.tsx │ │ │ ├── InputError.tsx │ │ │ ├── InputSpinner.tsx │ │ │ ├── ItemContainer.tsx │ │ │ ├── Label.tsx │ │ │ ├── LabelNew.tsx │ │ │ ├── MainPage.tsx │ │ │ ├── MainPageHeader.tsx │ │ │ ├── MainSidebar.tsx │ │ │ ├── MainWrapper.tsx │ │ │ ├── MobileFullScreenMenu.tsx │ │ │ ├── MobileTopBar.tsx │ │ │ ├── ModBox.tsx │ │ │ ├── Modal.tsx │ │ │ ├── ModrinthLogo.tsx │ │ │ ├── PageContentBlock.tsx │ │ │ ├── Pagination.tsx │ │ │ ├── PermissionRoute.tsx │ │ │ ├── PyroLogo.tsx │ │ │ ├── ScreenBlock.tsx │ │ │ ├── Select.tsx │ │ │ ├── ServerContentBlock.tsx │ │ │ ├── Spinner.tsx │ │ │ ├── SpinnerOverlay.tsx │ │ │ ├── Switch.tsx │ │ │ ├── SwitchV2.tsx │ │ │ ├── SwitchV2Container.tsx │ │ │ ├── Tabs.tsx │ │ │ ├── TextInput.tsx │ │ │ ├── TitledGreyBox.tsx │ │ │ ├── activity │ │ │ │ ├── ActivityLogEntry.tsx │ │ │ │ ├── ActivityLogMetaButton.tsx │ │ │ │ └── style.module.css │ │ │ ├── alert │ │ │ │ ├── Alert.tsx │ │ │ │ └── index.ts │ │ │ ├── button │ │ │ │ ├── Button.tsx │ │ │ │ ├── index.ts │ │ │ │ ├── style.module.css │ │ │ │ └── types.ts │ │ │ ├── commandk │ │ │ │ └── CmdK.tsx │ │ │ ├── dialog │ │ │ │ ├── ConfirmationDialog.tsx │ │ │ │ ├── Dialog.tsx │ │ │ │ ├── DialogFooter.tsx │ │ │ │ ├── DialogIcon.tsx │ │ │ │ ├── context.ts │ │ │ │ ├── index.ts │ │ │ │ ├── style.module.css │ │ │ │ └── types.d.ts │ │ │ ├── editor │ │ │ │ ├── Editor.tsx │ │ │ │ ├── index.ts │ │ │ │ └── theme.ts │ │ │ ├── inputs │ │ │ │ ├── Checkbox.tsx │ │ │ │ ├── InputField.tsx │ │ │ │ ├── index.ts │ │ │ │ └── styles.module.css │ │ │ ├── pages │ │ │ │ └── PageList.tsx │ │ │ ├── table │ │ │ │ └── PaginationFooter.tsx │ │ │ └── transitions │ │ │ │ ├── FadeTransition.tsx │ │ │ │ └── index.ts │ │ ├── history.ts │ │ ├── server │ │ │ ├── ConflictStateRenderer.tsx │ │ │ ├── InstallListener.tsx │ │ │ ├── ServerActivityLogContainer.tsx │ │ │ ├── TransferListener.tsx │ │ │ ├── UptimeDuration.tsx │ │ │ ├── WebsocketHandler.tsx │ │ │ ├── backups │ │ │ │ ├── BackupContainer.tsx │ │ │ │ ├── BackupContextMenu.tsx │ │ │ │ ├── BackupItem.tsx │ │ │ │ └── useUnifiedBackups.ts │ │ │ ├── console │ │ │ │ ├── ChartBlock.tsx │ │ │ │ ├── Console.tsx │ │ │ │ ├── PowerButtons.tsx │ │ │ │ ├── ServerConsoleContainer.tsx │ │ │ │ ├── ServerDetailsBlock.tsx │ │ │ │ ├── StatBlock.tsx │ │ │ │ ├── StatGraphs.tsx │ │ │ │ ├── StatusPill.tsx │ │ │ │ ├── chart.ts │ │ │ │ └── style.module.css │ │ │ ├── databases │ │ │ │ ├── DatabaseRow.tsx │ │ │ │ ├── DatabasesContainer.tsx │ │ │ │ └── RotatePasswordButton.tsx │ │ │ ├── events.ts │ │ │ ├── features │ │ │ │ ├── Features.tsx │ │ │ │ ├── GSLTokenModalFeature.tsx │ │ │ │ ├── JavaVersionModalFeature.tsx │ │ │ │ ├── MclogsFeature.tsx │ │ │ │ ├── PIDLimitModalFeature.tsx │ │ │ │ ├── SteamDiskSpaceFeature.tsx │ │ │ │ ├── eula │ │ │ │ │ └── EulaModalFeature.tsx │ │ │ │ └── index.ts │ │ │ ├── files │ │ │ │ ├── ChmodFileModal.tsx │ │ │ │ ├── FileDropdownMenu.tsx │ │ │ │ ├── FileEditContainer.tsx │ │ │ │ ├── FileManagerBreadcrumbs.tsx │ │ │ │ ├── FileManagerContainer.tsx │ │ │ │ ├── FileManagerStatus.tsx │ │ │ │ ├── FileNameModal.tsx │ │ │ │ ├── FileObjectRow.tsx │ │ │ │ ├── FileUploadRow.tsx │ │ │ │ ├── MassActionsBar.tsx │ │ │ │ ├── NewDirectoryButton.tsx │ │ │ │ ├── NewFileButton.tsx │ │ │ │ ├── RenameFileModal.tsx │ │ │ │ ├── SelectFileCheckbox.tsx │ │ │ │ ├── UploadButton.tsx │ │ │ │ └── style.module.css │ │ │ ├── modrinth │ │ │ │ ├── DownloadFile.tsx │ │ │ │ ├── DownloadModel.tsx │ │ │ │ ├── LoaderSelector.tsx │ │ │ │ ├── ModCard.tsx │ │ │ │ ├── ModList.tsx │ │ │ │ ├── ModrinthContainer.tsx │ │ │ │ ├── VersionSelector.tsx │ │ │ │ ├── config.ts │ │ │ │ └── eggfeatures.ts │ │ │ ├── network │ │ │ │ ├── AllocationRow.tsx │ │ │ │ ├── DeleteAllocationButton.tsx │ │ │ │ ├── NetworkContainer.tsx │ │ │ │ └── SubdomainManagement.tsx │ │ │ ├── operations │ │ │ │ └── OperationProgressModal.tsx │ │ │ ├── schedules │ │ │ │ ├── DeleteScheduleButton.tsx │ │ │ │ ├── EditScheduleModal.tsx │ │ │ │ ├── ScheduleCheatsheetCards.tsx │ │ │ │ ├── ScheduleContainer.tsx │ │ │ │ ├── ScheduleCronRow.tsx │ │ │ │ ├── ScheduleEditContainer.tsx │ │ │ │ ├── ScheduleRow.tsx │ │ │ │ ├── ScheduleTaskRow.tsx │ │ │ │ └── TaskDetailsModal.tsx │ │ │ ├── settings │ │ │ │ ├── ReinstallServerBox.tsx │ │ │ │ ├── RenameServerBox.tsx │ │ │ │ └── SettingsContainer.tsx │ │ │ ├── shell │ │ │ │ └── ShellContainer.tsx │ │ │ ├── startup │ │ │ │ ├── StartupContainer.tsx │ │ │ │ └── VariableBox.tsx │ │ │ └── users │ │ │ │ ├── CreateUserContainer.tsx │ │ │ │ ├── EditUserContainer.tsx │ │ │ │ ├── PermissionRow.tsx │ │ │ │ ├── PermissionTitleBox.tsx │ │ │ │ ├── RemoveSubuserButton.tsx │ │ │ │ ├── UserFormComponent.tsx │ │ │ │ ├── UserRow.tsx │ │ │ │ └── UsersContainer.tsx │ │ └── types.ts │ ├── context │ │ └── ModalContext.ts │ ├── easy-peasy.d.ts │ ├── globals.d.ts │ ├── helpers.ts │ ├── helpers │ │ └── captcha.ts │ ├── hoc │ │ ├── RequireServerPermission.tsx │ │ ├── asDialog.tsx │ │ └── asModal.tsx │ ├── index.tsx │ ├── lib │ │ ├── captcha │ │ │ ├── CaptchaManager.ts │ │ │ ├── CaptchaProvider.ts │ │ │ ├── CaptchaProviderFactory.ts │ │ │ ├── index.ts │ │ │ ├── providers │ │ │ │ ├── HCaptchaProvider.ts │ │ │ │ ├── NullProvider.ts │ │ │ │ ├── RecaptchaProvider.ts │ │ │ │ └── TurnstileProvider.ts │ │ │ └── types.ts │ │ ├── formatters.spec.ts │ │ ├── formatters.ts │ │ ├── helpers.spec.ts │ │ ├── helpers.ts │ │ ├── mclogsUtils.ts │ │ ├── objects.spec.ts │ │ ├── objects.ts │ │ ├── server-operations.ts │ │ ├── strings.spec.ts │ │ ├── strings.ts │ │ └── utils.ts │ ├── macros.d.ts │ ├── modes.ts │ ├── plugins │ │ ├── Websocket.ts │ │ ├── useDeepCompareEffect.ts │ │ ├── useDeepCompareMemo.ts │ │ ├── useDeepMemoize.ts │ │ ├── useEventListener.ts │ │ ├── useFileManagerSwr.ts │ │ ├── useFilteredObject.ts │ │ ├── useFlash.ts │ │ ├── useLocationHash.ts │ │ ├── usePermissions.ts │ │ ├── usePersistedState.ts │ │ ├── useSWRKey.ts │ │ ├── useVW.ts │ │ └── useWebsocketEvent.ts │ ├── routers │ │ ├── AuthenticationRouter.tsx │ │ ├── DashboardRouter.tsx │ │ ├── ServerRouter.tsx │ │ └── routes.ts │ ├── state │ │ ├── flashes.ts │ │ ├── hooks.ts │ │ ├── index.ts │ │ ├── permissions.ts │ │ ├── progress.ts │ │ ├── server │ │ │ ├── databases.ts │ │ │ ├── files.ts │ │ │ ├── index.ts │ │ │ ├── schedules.ts │ │ │ ├── socket.ts │ │ │ └── subusers.ts │ │ ├── settings.ts │ │ └── user.ts │ └── vite-env.d.ts └── views │ ├── admin │ ├── api │ │ ├── index.blade.php │ │ └── new.blade.php │ ├── databases │ │ ├── index.blade.php │ │ └── view.blade.php │ ├── eggs │ │ ├── new.blade.php │ │ ├── scripts.blade.php │ │ ├── variables.blade.php │ │ └── view.blade.php │ ├── index.blade.php │ ├── locations │ │ ├── index.blade.php │ │ └── view.blade.php │ ├── mounts │ │ ├── index.blade.php │ │ └── view.blade.php │ ├── nests │ │ ├── index.blade.php │ │ ├── new.blade.php │ │ └── view.blade.php │ ├── nodes │ │ ├── index.blade.php │ │ ├── new.blade.php │ │ └── view │ │ │ ├── allocation.blade.php │ │ │ ├── configuration.blade.php │ │ │ ├── index.blade.php │ │ │ ├── servers.blade.php │ │ │ └── settings.blade.php │ ├── servers │ │ ├── index.blade.php │ │ ├── new.blade.php │ │ ├── partials │ │ │ └── navigation.blade.php │ │ └── view │ │ │ ├── build.blade.php │ │ │ ├── database.blade.php │ │ │ ├── delete.blade.php │ │ │ ├── details.blade.php │ │ │ ├── index.blade.php │ │ │ ├── manage.blade.php │ │ │ ├── mounts.blade.php │ │ │ └── startup.blade.php │ ├── settings │ │ ├── advanced.blade.php │ │ ├── captcha.blade.php │ │ ├── domains │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ └── index.blade.php │ │ ├── index.blade.php │ │ └── mail.blade.php │ └── users │ │ ├── index.blade.php │ │ ├── new.blade.php │ │ └── view.blade.php │ ├── layouts │ ├── admin.blade.php │ └── scripts.blade.php │ ├── partials │ ├── admin │ │ └── settings │ │ │ ├── nav.blade.php │ │ │ └── notice.blade.php │ └── schedules │ │ └── task-template.blade.php │ ├── templates │ ├── auth │ │ └── core.blade.php │ ├── base │ │ └── core.blade.php │ └── wrapper.blade.php │ └── vendor │ ├── notifications │ ├── email-plain.blade.php │ └── email.blade.php │ └── pagination │ └── default.blade.php ├── routes ├── admin.php ├── api-application.php ├── api-client.php ├── api-remote.php ├── auth.php └── base.php ├── storage ├── app │ ├── .gitignore │ ├── private │ │ └── .gitignore │ └── public │ │ └── .gitignore ├── clockwork │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tests ├── Assertions │ ├── AssertsActivityLogged.php │ └── MiddlewareAttributeAssertionsTrait.php ├── Integration │ ├── Api │ │ ├── Application │ │ │ ├── ApplicationApiIntegrationTestCase.php │ │ │ ├── Location │ │ │ │ └── LocationControllerTest.php │ │ │ ├── Nests │ │ │ │ ├── EggControllerTest.php │ │ │ │ └── NestControllerTest.php │ │ │ └── Users │ │ │ │ ├── ExternalUserControllerTest.php │ │ │ │ └── UserControllerTest.php │ │ ├── Client │ │ │ ├── AccountControllerTest.php │ │ │ ├── ApiKeyControllerTest.php │ │ │ ├── ClientApiIntegrationTestCase.php │ │ │ ├── ClientControllerTest.php │ │ │ ├── SSHKeyControllerTest.php │ │ │ ├── Server │ │ │ │ ├── Allocation │ │ │ │ │ ├── AllocationAuthorizationTest.php │ │ │ │ │ ├── CreateNewAllocationTest.php │ │ │ │ │ └── DeleteAllocationTest.php │ │ │ │ ├── Backup │ │ │ │ │ ├── BackupAuthorizationTest.php │ │ │ │ │ └── DeleteBackupTest.php │ │ │ │ ├── CommandControllerTest.php │ │ │ │ ├── Database │ │ │ │ │ └── DatabaseAuthorizationTest.php │ │ │ │ ├── NetworkAllocationControllerTest.php │ │ │ │ ├── PowerControllerTest.php │ │ │ │ ├── ResourceUtilizationControllerTest.php │ │ │ │ ├── Schedule │ │ │ │ │ ├── CreateServerScheduleTest.php │ │ │ │ │ ├── DeleteServerScheduleTest.php │ │ │ │ │ ├── ExecuteScheduleTest.php │ │ │ │ │ ├── GetServerSchedulesTest.php │ │ │ │ │ ├── ScheduleAuthorizationTest.php │ │ │ │ │ └── UpdateServerScheduleTest.php │ │ │ │ ├── ScheduleTask │ │ │ │ │ ├── CreateServerScheduleTaskTest.php │ │ │ │ │ └── DeleteScheduleTaskTest.php │ │ │ │ ├── SettingsControllerTest.php │ │ │ │ ├── Startup │ │ │ │ │ ├── GetStartupAndVariablesTest.php │ │ │ │ │ └── UpdateStartupVariableTest.php │ │ │ │ ├── Subuser │ │ │ │ │ ├── CreateServerSubuserTest.php │ │ │ │ │ ├── DeleteSubuserTest.php │ │ │ │ │ ├── SubuserAuthorizationTest.php │ │ │ │ │ └── UpdateSubuserTest.php │ │ │ │ └── WebsocketControllerTest.php │ │ │ └── TwoFactorControllerTest.php │ │ └── Remote │ │ │ └── SftpAuthenticationControllerTest.php │ ├── IntegrationTestCase.php │ ├── Jobs │ │ └── Schedule │ │ │ └── RunTaskJobTest.php │ ├── Services │ │ ├── Allocations │ │ │ └── FindAssignableAllocationServiceTest.php │ │ ├── Backups │ │ │ └── DeleteBackupServiceTest.php │ │ ├── Databases │ │ │ ├── DatabaseManagementServiceTest.php │ │ │ └── DeployServerDatabaseServiceTest.php │ │ ├── Deployment │ │ │ └── FindViableNodesServiceTest.php │ │ ├── Schedules │ │ │ └── ProcessScheduleServiceTest.php │ │ └── Servers │ │ │ ├── BuildModificationServiceTest.php │ │ │ ├── ServerCreationServiceTest.php │ │ │ ├── ServerDeletionServiceTest.php │ │ │ ├── StartupModificationServiceTest.php │ │ │ ├── SuspensionServiceTest.php │ │ │ └── VariableValidatorServiceTest.php │ └── TestResponse.php ├── TestCase.php ├── Traits │ ├── Http │ │ ├── IntegrationJsonRequestAssertions.php │ │ ├── MocksMiddlewareClosure.php │ │ └── RequestMockHelpers.php │ ├── Integration │ │ └── CreatesTestModels.php │ ├── MocksPdoConnection.php │ ├── MocksRequestException.php │ └── MocksUuids.php └── Unit │ ├── Helpers │ ├── EnvironmentWriterTraitTest.php │ └── IsDigitTest.php │ ├── Http │ └── Middleware │ │ ├── AdminAuthenticateTest.php │ │ ├── Api │ │ ├── Application │ │ │ └── AuthenticateUserTest.php │ │ └── Daemon │ │ │ └── DaemonAuthenticateTest.php │ │ ├── LanguageMiddlewareTest.php │ │ ├── MaintenanceMiddlewareTest.php │ │ ├── MiddlewareTestCase.php │ │ └── RedirectIfAuthenticatedTest.php │ ├── Rules │ └── UsernameTest.php │ └── Services │ └── Acl │ └── Api │ └── AdminAclTest.php ├── tsconfig.json ├── turbo.json ├── vagrant └── provision.sh └── vite.config.ts /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/.env.ci -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/.env.example -------------------------------------------------------------------------------- /.env.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/.env.nix -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | liberapay: pyro 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/.github/ISSUE_TEMPLATE/feature-request.yml -------------------------------------------------------------------------------- /.github/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/.github/banner.png -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/.github/docker/README.md -------------------------------------------------------------------------------- /.github/docker/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/.github/docker/default.conf -------------------------------------------------------------------------------- /.github/docker/default_ssl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/.github/docker/default_ssl.conf -------------------------------------------------------------------------------- /.github/docker/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/.github/docker/entrypoint.sh -------------------------------------------------------------------------------- /.github/docker/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/.github/docker/supervisord.conf -------------------------------------------------------------------------------- /.github/docker/www.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/.github/docker/www.conf -------------------------------------------------------------------------------- /.github/server-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/.github/server-menu.png -------------------------------------------------------------------------------- /.github/workflows-disabled/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/.github/workflows-disabled/build.yaml -------------------------------------------------------------------------------- /.github/workflows-disabled/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/.github/workflows-disabled/ci.yaml -------------------------------------------------------------------------------- /.github/workflows-disabled/lint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/.github/workflows-disabled/lint.yaml -------------------------------------------------------------------------------- /.github/workflows-disabled/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/.github/workflows-disabled/release.yaml -------------------------------------------------------------------------------- /.github/workflows/dev-build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/.github/workflows/dev-build.yaml -------------------------------------------------------------------------------- /.github/workflows/prod-build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/.github/workflows/prod-build.yaml -------------------------------------------------------------------------------- /.github/workflows/release-action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/.github/workflows/release-action.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | legacy-peer-deps=true -------------------------------------------------------------------------------- /.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/.php-cs-fixer.dist.php -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/LICENSE.md -------------------------------------------------------------------------------- /LICENSE_MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/LICENSE_MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/SECURITY.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/Vagrantfile -------------------------------------------------------------------------------- /app/Console/Commands/InfoCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Console/Commands/InfoCommand.php -------------------------------------------------------------------------------- /app/Console/Commands/Location/MakeLocationCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Console/Commands/Location/MakeLocationCommand.php -------------------------------------------------------------------------------- /app/Console/Commands/Node/MakeNodeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Console/Commands/Node/MakeNodeCommand.php -------------------------------------------------------------------------------- /app/Console/Commands/Node/NodeConfigurationCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Console/Commands/Node/NodeConfigurationCommand.php -------------------------------------------------------------------------------- /app/Console/Commands/Node/NodeListCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Console/Commands/Node/NodeListCommand.php -------------------------------------------------------------------------------- /app/Console/Commands/Overrides/KeyGenerateCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Console/Commands/Overrides/KeyGenerateCommand.php -------------------------------------------------------------------------------- /app/Console/Commands/Overrides/SeedCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Console/Commands/Overrides/SeedCommand.php -------------------------------------------------------------------------------- /app/Console/Commands/Overrides/UpCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Console/Commands/Overrides/UpCommand.php -------------------------------------------------------------------------------- /app/Console/Commands/Server/BulkPowerActionCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Console/Commands/Server/BulkPowerActionCommand.php -------------------------------------------------------------------------------- /app/Console/Commands/UpgradeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Console/Commands/UpgradeCommand.php -------------------------------------------------------------------------------- /app/Console/Commands/User/DeleteUserCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Console/Commands/User/DeleteUserCommand.php -------------------------------------------------------------------------------- /app/Console/Commands/User/DisableTwoFactorCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Console/Commands/User/DisableTwoFactorCommand.php -------------------------------------------------------------------------------- /app/Console/Commands/User/MakeUserCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Console/Commands/User/MakeUserCommand.php -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Console/RequiresDatabaseMigrations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Console/RequiresDatabaseMigrations.php -------------------------------------------------------------------------------- /app/Contracts/Captcha/CaptchaProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Contracts/Captcha/CaptchaProviderInterface.php -------------------------------------------------------------------------------- /app/Contracts/Core/ReceivesEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Contracts/Core/ReceivesEvents.php -------------------------------------------------------------------------------- /app/Contracts/Criteria/CriteriaInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Contracts/Criteria/CriteriaInterface.php -------------------------------------------------------------------------------- /app/Contracts/Dns/DnsProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Contracts/Dns/DnsProviderInterface.php -------------------------------------------------------------------------------- /app/Contracts/Elytra/Job.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Contracts/Elytra/Job.php -------------------------------------------------------------------------------- /app/Contracts/Extensions/HashidsInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Contracts/Extensions/HashidsInterface.php -------------------------------------------------------------------------------- /app/Contracts/Http/ClientPermissionsRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Contracts/Http/ClientPermissionsRequest.php -------------------------------------------------------------------------------- /app/Contracts/Repository/ApiKeyRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Contracts/Repository/ApiKeyRepositoryInterface.php -------------------------------------------------------------------------------- /app/Contracts/Repository/EggRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Contracts/Repository/EggRepositoryInterface.php -------------------------------------------------------------------------------- /app/Contracts/Repository/NestRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Contracts/Repository/NestRepositoryInterface.php -------------------------------------------------------------------------------- /app/Contracts/Repository/NodeRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Contracts/Repository/NodeRepositoryInterface.php -------------------------------------------------------------------------------- /app/Contracts/Repository/RepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Contracts/Repository/RepositoryInterface.php -------------------------------------------------------------------------------- /app/Contracts/Repository/ServerRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Contracts/Repository/ServerRepositoryInterface.php -------------------------------------------------------------------------------- /app/Contracts/Repository/TaskRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Contracts/Repository/TaskRepositoryInterface.php -------------------------------------------------------------------------------- /app/Contracts/Repository/UserRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Contracts/Repository/UserRepositoryInterface.php -------------------------------------------------------------------------------- /app/Contracts/Subdomain/SubdomainFeatureInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Contracts/Subdomain/SubdomainFeatureInterface.php -------------------------------------------------------------------------------- /app/Events/ActivityLogged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Events/ActivityLogged.php -------------------------------------------------------------------------------- /app/Events/Auth/DirectLogin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Events/Auth/DirectLogin.php -------------------------------------------------------------------------------- /app/Events/Auth/FailedPasswordReset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Events/Auth/FailedPasswordReset.php -------------------------------------------------------------------------------- /app/Events/Auth/ProvidedAuthenticationToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Events/Auth/ProvidedAuthenticationToken.php -------------------------------------------------------------------------------- /app/Events/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Events/Event.php -------------------------------------------------------------------------------- /app/Events/Server/Created.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Events/Server/Created.php -------------------------------------------------------------------------------- /app/Events/Server/Creating.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Events/Server/Creating.php -------------------------------------------------------------------------------- /app/Events/Server/Deleted.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Events/Server/Deleted.php -------------------------------------------------------------------------------- /app/Events/Server/Deleting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Events/Server/Deleting.php -------------------------------------------------------------------------------- /app/Events/Server/Installed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Events/Server/Installed.php -------------------------------------------------------------------------------- /app/Events/Server/Saved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Events/Server/Saved.php -------------------------------------------------------------------------------- /app/Events/Server/Saving.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Events/Server/Saving.php -------------------------------------------------------------------------------- /app/Events/Server/Updated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Events/Server/Updated.php -------------------------------------------------------------------------------- /app/Events/Server/Updating.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Events/Server/Updating.php -------------------------------------------------------------------------------- /app/Events/Subuser/Created.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Events/Subuser/Created.php -------------------------------------------------------------------------------- /app/Events/Subuser/Creating.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Events/Subuser/Creating.php -------------------------------------------------------------------------------- /app/Events/Subuser/Deleted.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Events/Subuser/Deleted.php -------------------------------------------------------------------------------- /app/Events/Subuser/Deleting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Events/Subuser/Deleting.php -------------------------------------------------------------------------------- /app/Events/User/Created.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Events/User/Created.php -------------------------------------------------------------------------------- /app/Events/User/Creating.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Events/User/Creating.php -------------------------------------------------------------------------------- /app/Events/User/Deleted.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Events/User/Deleted.php -------------------------------------------------------------------------------- /app/Events/User/Deleting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Events/User/Deleting.php -------------------------------------------------------------------------------- /app/Exceptions/AccountNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Exceptions/AccountNotFoundException.php -------------------------------------------------------------------------------- /app/Exceptions/AutoDeploymentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Exceptions/AutoDeploymentException.php -------------------------------------------------------------------------------- /app/Exceptions/DisplayException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Exceptions/DisplayException.php -------------------------------------------------------------------------------- /app/Exceptions/Dns/DnsProviderException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Exceptions/Dns/DnsProviderException.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Exceptions/Http/HttpForbiddenException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Exceptions/Http/HttpForbiddenException.php -------------------------------------------------------------------------------- /app/Exceptions/Http/TwoFactorAuthRequiredException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Exceptions/Http/TwoFactorAuthRequiredException.php -------------------------------------------------------------------------------- /app/Exceptions/ManifestDoesNotExistException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Exceptions/ManifestDoesNotExistException.php -------------------------------------------------------------------------------- /app/Exceptions/Model/DataValidationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Exceptions/Model/DataValidationException.php -------------------------------------------------------------------------------- /app/Exceptions/PterodactylException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Exceptions/PterodactylException.php -------------------------------------------------------------------------------- /app/Exceptions/Repository/RecordNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Exceptions/Repository/RecordNotFoundException.php -------------------------------------------------------------------------------- /app/Exceptions/Repository/RepositoryException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Exceptions/Repository/RepositoryException.php -------------------------------------------------------------------------------- /app/Exceptions/Service/Egg/BadJsonFormatException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Exceptions/Service/Egg/BadJsonFormatException.php -------------------------------------------------------------------------------- /app/Exceptions/Service/Egg/HasChildrenException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Exceptions/Service/Egg/HasChildrenException.php -------------------------------------------------------------------------------- /app/Exceptions/Service/HasActiveServersException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Exceptions/Service/HasActiveServersException.php -------------------------------------------------------------------------------- /app/Exceptions/Service/InvalidFileUploadException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Exceptions/Service/InvalidFileUploadException.php -------------------------------------------------------------------------------- /app/Extensions/Backups/BackupManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Extensions/Backups/BackupManager.php -------------------------------------------------------------------------------- /app/Extensions/DynamicDatabaseConnection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Extensions/DynamicDatabaseConnection.php -------------------------------------------------------------------------------- /app/Extensions/Facades/Theme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Extensions/Facades/Theme.php -------------------------------------------------------------------------------- /app/Extensions/Filesystem/S3Filesystem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Extensions/Filesystem/S3Filesystem.php -------------------------------------------------------------------------------- /app/Extensions/Hashids.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Extensions/Hashids.php -------------------------------------------------------------------------------- /app/Extensions/Laravel/Sanctum/NewAccessToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Extensions/Laravel/Sanctum/NewAccessToken.php -------------------------------------------------------------------------------- /app/Extensions/Spatie/Fractalistic/Fractal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Extensions/Spatie/Fractalistic/Fractal.php -------------------------------------------------------------------------------- /app/Extensions/Themes/Theme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Extensions/Themes/Theme.php -------------------------------------------------------------------------------- /app/Facades/Activity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Facades/Activity.php -------------------------------------------------------------------------------- /app/Facades/LogBatch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Facades/LogBatch.php -------------------------------------------------------------------------------- /app/Facades/LogTarget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Facades/LogTarget.php -------------------------------------------------------------------------------- /app/Helpers/Time.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Helpers/Time.php -------------------------------------------------------------------------------- /app/Helpers/Utilities.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Helpers/Utilities.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/ApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Http/Controllers/Admin/ApiController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/BaseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Http/Controllers/Admin/BaseController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/DatabaseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Http/Controllers/Admin/DatabaseController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/LocationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Http/Controllers/Admin/LocationController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/MountController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Http/Controllers/Admin/MountController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/Nests/EggController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Http/Controllers/Admin/Nests/EggController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/Nests/NestController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Http/Controllers/Admin/Nests/NestController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/Nodes/NodeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Http/Controllers/Admin/Nodes/NodeController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/NodesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Http/Controllers/Admin/NodesController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/ServersController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Http/Controllers/Admin/ServersController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/Settings/MailController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Http/Controllers/Admin/Settings/MailController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/UserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Http/Controllers/Admin/UserController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Api/Client/AccountController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Http/Controllers/Api/Client/AccountController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Api/Client/ApiKeyController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Http/Controllers/Api/Client/ApiKeyController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Api/Client/ClientController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Http/Controllers/Api/Client/ClientController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Api/Client/SSHKeyController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Http/Controllers/Api/Client/SSHKeyController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/AbstractLoginController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Http/Controllers/Auth/AbstractLoginController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ForgotPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Http/Controllers/Auth/ForgotPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/LoginController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Http/Controllers/Auth/LoginController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ResetPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Http/Controllers/Auth/ResetPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Base/IndexController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Http/Controllers/Base/IndexController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Base/LocaleController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Http/Controllers/Base/LocaleController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Base/SystemStatusController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Http/Controllers/Base/SystemStatusController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/Activity/AccountSubject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Http/Middleware/Activity/AccountSubject.php -------------------------------------------------------------------------------- /app/Http/Middleware/Activity/ServerSubject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Http/Middleware/Activity/ServerSubject.php -------------------------------------------------------------------------------- /app/Http/Middleware/Activity/TrackAPIKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Http/Middleware/Activity/TrackAPIKey.php -------------------------------------------------------------------------------- /app/Http/Middleware/Admin/Servers/ServerInstalled.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Http/Middleware/Admin/Servers/ServerInstalled.php -------------------------------------------------------------------------------- /app/Http/Middleware/AdminAuthenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Http/Middleware/AdminAuthenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/Api/AuthenticateIPAccess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Http/Middleware/Api/AuthenticateIPAccess.php -------------------------------------------------------------------------------- /app/Http/Middleware/Api/Client/RequireClientApiKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Http/Middleware/Api/Client/RequireClientApiKey.php -------------------------------------------------------------------------------- /app/Http/Middleware/Api/Daemon/DaemonAuthenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Http/Middleware/Api/Daemon/DaemonAuthenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/Api/IsValidJson.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Http/Middleware/Api/IsValidJson.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/EnsureStatefulRequests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Http/Middleware/EnsureStatefulRequests.php -------------------------------------------------------------------------------- /app/Http/Middleware/LanguageMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Http/Middleware/LanguageMiddleware.php -------------------------------------------------------------------------------- /app/Http/Middleware/MaintenanceMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Http/Middleware/MaintenanceMiddleware.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/RequireTwoFactorAuthentication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Http/Middleware/RequireTwoFactorAuthentication.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCaptcha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Http/Middleware/VerifyCaptcha.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Http/Requests/Admin/AdminFormRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Http/Requests/Admin/AdminFormRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Admin/BaseFormRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Http/Requests/Admin/BaseFormRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Admin/DatabaseHostFormRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Http/Requests/Admin/DatabaseHostFormRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Admin/Egg/EggFormRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Http/Requests/Admin/Egg/EggFormRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Admin/Egg/EggImportFormRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Http/Requests/Admin/Egg/EggImportFormRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Admin/Egg/EggScriptFormRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Http/Requests/Admin/Egg/EggScriptFormRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Admin/Egg/EggVariableFormRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Http/Requests/Admin/Egg/EggVariableFormRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Admin/LocationFormRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Http/Requests/Admin/LocationFormRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Admin/MountFormRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Http/Requests/Admin/MountFormRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Admin/Nest/StoreNestFormRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Http/Requests/Admin/Nest/StoreNestFormRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Admin/NewUserFormRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Http/Requests/Admin/NewUserFormRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Admin/Node/AllocationFormRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Http/Requests/Admin/Node/AllocationFormRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Admin/Node/NodeFormRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Http/Requests/Admin/Node/NodeFormRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Admin/ServerFormRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Http/Requests/Admin/ServerFormRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Admin/Settings/DomainFormRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Http/Requests/Admin/Settings/DomainFormRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Admin/UserFormRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Http/Requests/Admin/UserFormRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Api/Client/ClientApiRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Http/Requests/Api/Client/ClientApiRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Api/Client/GetServersRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Http/Requests/Api/Client/GetServersRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Api/Remote/ActivityEventRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Http/Requests/Api/Remote/ActivityEventRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Auth/LoginCheckpointRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Http/Requests/Auth/LoginCheckpointRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Auth/LoginRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Http/Requests/Auth/LoginRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Auth/ResetPasswordRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Http/Requests/Auth/ResetPasswordRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Base/LocaleRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Http/Requests/Base/LocaleRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/FrontendUserFormRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Http/Requests/FrontendUserFormRequest.php -------------------------------------------------------------------------------- /app/Http/Resources/ServerOperationResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Http/Resources/ServerOperationResource.php -------------------------------------------------------------------------------- /app/Http/ViewComposers/AssetComposer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Http/ViewComposers/AssetComposer.php -------------------------------------------------------------------------------- /app/Jobs/Job.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Jobs/Job.php -------------------------------------------------------------------------------- /app/Jobs/Schedule/RunTaskJob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Jobs/Schedule/RunTaskJob.php -------------------------------------------------------------------------------- /app/Jobs/Server/ApplyEggChangeJob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Jobs/Server/ApplyEggChangeJob.php -------------------------------------------------------------------------------- /app/Listeners/Auth/AuthenticationListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Listeners/Auth/AuthenticationListener.php -------------------------------------------------------------------------------- /app/Listeners/Auth/PasswordResetListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Listeners/Auth/PasswordResetListener.php -------------------------------------------------------------------------------- /app/Listeners/Auth/TwoFactorListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Listeners/Auth/TwoFactorListener.php -------------------------------------------------------------------------------- /app/Models/APILog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Models/APILog.php -------------------------------------------------------------------------------- /app/Models/ActivityLog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Models/ActivityLog.php -------------------------------------------------------------------------------- /app/Models/ActivityLogSubject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Models/ActivityLogSubject.php -------------------------------------------------------------------------------- /app/Models/Allocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Models/Allocation.php -------------------------------------------------------------------------------- /app/Models/ApiKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Models/ApiKey.php -------------------------------------------------------------------------------- /app/Models/AuditLog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Models/AuditLog.php -------------------------------------------------------------------------------- /app/Models/Backup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Models/Backup.php -------------------------------------------------------------------------------- /app/Models/Database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Models/Database.php -------------------------------------------------------------------------------- /app/Models/DatabaseHost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Models/DatabaseHost.php -------------------------------------------------------------------------------- /app/Models/Domain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Models/Domain.php -------------------------------------------------------------------------------- /app/Models/Egg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Models/Egg.php -------------------------------------------------------------------------------- /app/Models/EggMount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Models/EggMount.php -------------------------------------------------------------------------------- /app/Models/EggVariable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Models/EggVariable.php -------------------------------------------------------------------------------- /app/Models/ElytraJob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Models/ElytraJob.php -------------------------------------------------------------------------------- /app/Models/Filters/AdminServerFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Models/Filters/AdminServerFilter.php -------------------------------------------------------------------------------- /app/Models/Filters/MultiFieldServerFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Models/Filters/MultiFieldServerFilter.php -------------------------------------------------------------------------------- /app/Models/Location.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Models/Location.php -------------------------------------------------------------------------------- /app/Models/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Models/Model.php -------------------------------------------------------------------------------- /app/Models/Mount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Models/Mount.php -------------------------------------------------------------------------------- /app/Models/MountNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Models/MountNode.php -------------------------------------------------------------------------------- /app/Models/MountServer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Models/MountServer.php -------------------------------------------------------------------------------- /app/Models/Nest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Models/Nest.php -------------------------------------------------------------------------------- /app/Models/Node.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Models/Node.php -------------------------------------------------------------------------------- /app/Models/Objects/DeploymentObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Models/Objects/DeploymentObject.php -------------------------------------------------------------------------------- /app/Models/Permission.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Models/Permission.php -------------------------------------------------------------------------------- /app/Models/RecoveryToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Models/RecoveryToken.php -------------------------------------------------------------------------------- /app/Models/Schedule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Models/Schedule.php -------------------------------------------------------------------------------- /app/Models/Server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Models/Server.php -------------------------------------------------------------------------------- /app/Models/ServerOperation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Models/ServerOperation.php -------------------------------------------------------------------------------- /app/Models/ServerSubdomain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Models/ServerSubdomain.php -------------------------------------------------------------------------------- /app/Models/ServerTransfer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Models/ServerTransfer.php -------------------------------------------------------------------------------- /app/Models/ServerVariable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Models/ServerVariable.php -------------------------------------------------------------------------------- /app/Models/Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Models/Session.php -------------------------------------------------------------------------------- /app/Models/SessionActivity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Models/SessionActivity.php -------------------------------------------------------------------------------- /app/Models/Setting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Models/Setting.php -------------------------------------------------------------------------------- /app/Models/Subuser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Models/Subuser.php -------------------------------------------------------------------------------- /app/Models/Task.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Models/Task.php -------------------------------------------------------------------------------- /app/Models/TaskLog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Models/TaskLog.php -------------------------------------------------------------------------------- /app/Models/Traits/HasAccessTokens.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Models/Traits/HasAccessTokens.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Models/UserSSHKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Models/UserSSHKey.php -------------------------------------------------------------------------------- /app/Notifications/AccountCreated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Notifications/AccountCreated.php -------------------------------------------------------------------------------- /app/Notifications/AddedToServer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Notifications/AddedToServer.php -------------------------------------------------------------------------------- /app/Notifications/MailTested.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Notifications/MailTested.php -------------------------------------------------------------------------------- /app/Notifications/RemovedFromServer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Notifications/RemovedFromServer.php -------------------------------------------------------------------------------- /app/Notifications/SendPasswordReset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Notifications/SendPasswordReset.php -------------------------------------------------------------------------------- /app/Notifications/ServerInstalled.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Notifications/ServerInstalled.php -------------------------------------------------------------------------------- /app/Observers/AllocationObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Observers/AllocationObserver.php -------------------------------------------------------------------------------- /app/Observers/EggObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Observers/EggObserver.php -------------------------------------------------------------------------------- /app/Observers/EggVariableObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Observers/EggVariableObserver.php -------------------------------------------------------------------------------- /app/Observers/ServerObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Observers/ServerObserver.php -------------------------------------------------------------------------------- /app/Observers/SessionActivityObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Observers/SessionActivityObserver.php -------------------------------------------------------------------------------- /app/Observers/SubuserObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Observers/SubuserObserver.php -------------------------------------------------------------------------------- /app/Observers/UserObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Observers/UserObserver.php -------------------------------------------------------------------------------- /app/Policies/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Policies/ServerPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Policies/ServerPolicy.php -------------------------------------------------------------------------------- /app/Providers/ActivityLogServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Providers/ActivityLogServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BackupsServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Providers/BackupsServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BladeServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Providers/BladeServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/CaptchaServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Providers/CaptchaServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/HashidsServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Providers/HashidsServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/ObserverServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Providers/ObserverServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RepositoryServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Providers/RepositoryServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/ServerOperationServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Providers/ServerOperationServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/SettingsServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Providers/SettingsServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/SubdomainServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Providers/SubdomainServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/ViewComposerServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Providers/ViewComposerServiceProvider.php -------------------------------------------------------------------------------- /app/Repositories/Eloquent/AllocationRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Repositories/Eloquent/AllocationRepository.php -------------------------------------------------------------------------------- /app/Repositories/Eloquent/ApiKeyRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Repositories/Eloquent/ApiKeyRepository.php -------------------------------------------------------------------------------- /app/Repositories/Eloquent/DatabaseHostRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Repositories/Eloquent/DatabaseHostRepository.php -------------------------------------------------------------------------------- /app/Repositories/Eloquent/DatabaseRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Repositories/Eloquent/DatabaseRepository.php -------------------------------------------------------------------------------- /app/Repositories/Eloquent/EggRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Repositories/Eloquent/EggRepository.php -------------------------------------------------------------------------------- /app/Repositories/Eloquent/EggVariableRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Repositories/Eloquent/EggVariableRepository.php -------------------------------------------------------------------------------- /app/Repositories/Eloquent/EloquentRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Repositories/Eloquent/EloquentRepository.php -------------------------------------------------------------------------------- /app/Repositories/Eloquent/LocationRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Repositories/Eloquent/LocationRepository.php -------------------------------------------------------------------------------- /app/Repositories/Eloquent/MountRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Repositories/Eloquent/MountRepository.php -------------------------------------------------------------------------------- /app/Repositories/Eloquent/NestRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Repositories/Eloquent/NestRepository.php -------------------------------------------------------------------------------- /app/Repositories/Eloquent/NodeRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Repositories/Eloquent/NodeRepository.php -------------------------------------------------------------------------------- /app/Repositories/Eloquent/PermissionRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Repositories/Eloquent/PermissionRepository.php -------------------------------------------------------------------------------- /app/Repositories/Eloquent/RecoveryTokenRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Repositories/Eloquent/RecoveryTokenRepository.php -------------------------------------------------------------------------------- /app/Repositories/Eloquent/ScheduleRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Repositories/Eloquent/ScheduleRepository.php -------------------------------------------------------------------------------- /app/Repositories/Eloquent/ServerRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Repositories/Eloquent/ServerRepository.php -------------------------------------------------------------------------------- /app/Repositories/Eloquent/ServerVariableRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Repositories/Eloquent/ServerVariableRepository.php -------------------------------------------------------------------------------- /app/Repositories/Eloquent/SessionRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Repositories/Eloquent/SessionRepository.php -------------------------------------------------------------------------------- /app/Repositories/Eloquent/SettingsRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Repositories/Eloquent/SettingsRepository.php -------------------------------------------------------------------------------- /app/Repositories/Eloquent/SubuserRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Repositories/Eloquent/SubuserRepository.php -------------------------------------------------------------------------------- /app/Repositories/Eloquent/TaskRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Repositories/Eloquent/TaskRepository.php -------------------------------------------------------------------------------- /app/Repositories/Eloquent/UserRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Repositories/Eloquent/UserRepository.php -------------------------------------------------------------------------------- /app/Repositories/Elytra/ElytraRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Repositories/Elytra/ElytraRepository.php -------------------------------------------------------------------------------- /app/Repositories/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Repositories/Repository.php -------------------------------------------------------------------------------- /app/Repositories/Wings/DaemonCommandRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Repositories/Wings/DaemonCommandRepository.php -------------------------------------------------------------------------------- /app/Repositories/Wings/DaemonFileRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Repositories/Wings/DaemonFileRepository.php -------------------------------------------------------------------------------- /app/Repositories/Wings/DaemonPowerRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Repositories/Wings/DaemonPowerRepository.php -------------------------------------------------------------------------------- /app/Repositories/Wings/DaemonRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Repositories/Wings/DaemonRepository.php -------------------------------------------------------------------------------- /app/Repositories/Wings/DaemonServerRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Repositories/Wings/DaemonServerRepository.php -------------------------------------------------------------------------------- /app/Repositories/Wings/DaemonTransferRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Repositories/Wings/DaemonTransferRepository.php -------------------------------------------------------------------------------- /app/Rules/Fqdn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Rules/Fqdn.php -------------------------------------------------------------------------------- /app/Rules/Username.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Rules/Username.php -------------------------------------------------------------------------------- /app/Services/Acl/Api/AdminAcl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Services/Acl/Api/AdminAcl.php -------------------------------------------------------------------------------- /app/Services/Activity/ActivityLogBatchService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Services/Activity/ActivityLogBatchService.php -------------------------------------------------------------------------------- /app/Services/Activity/ActivityLogService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Services/Activity/ActivityLogService.php -------------------------------------------------------------------------------- /app/Services/Activity/ActivityLogTargetableService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Services/Activity/ActivityLogTargetableService.php -------------------------------------------------------------------------------- /app/Services/Allocations/AllocationDeletionService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Services/Allocations/AllocationDeletionService.php -------------------------------------------------------------------------------- /app/Services/Allocations/AssignmentService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Services/Allocations/AssignmentService.php -------------------------------------------------------------------------------- /app/Services/Api/KeyCreationService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Services/Api/KeyCreationService.php -------------------------------------------------------------------------------- /app/Services/Backups/DownloadLinkService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Services/Backups/DownloadLinkService.php -------------------------------------------------------------------------------- /app/Services/Backups/ServerStateService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Services/Backups/ServerStateService.php -------------------------------------------------------------------------------- /app/Services/Captcha/CaptchaManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Services/Captcha/CaptchaManager.php -------------------------------------------------------------------------------- /app/Services/Captcha/Providers/HCaptchaProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Services/Captcha/Providers/HCaptchaProvider.php -------------------------------------------------------------------------------- /app/Services/Captcha/Providers/NullProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Services/Captcha/Providers/NullProvider.php -------------------------------------------------------------------------------- /app/Services/Captcha/Providers/RecaptchaProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Services/Captcha/Providers/RecaptchaProvider.php -------------------------------------------------------------------------------- /app/Services/Captcha/Providers/TurnstileProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Services/Captcha/Providers/TurnstileProvider.php -------------------------------------------------------------------------------- /app/Services/Databases/DatabaseManagementService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Services/Databases/DatabaseManagementService.php -------------------------------------------------------------------------------- /app/Services/Databases/DatabasePasswordService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Services/Databases/DatabasePasswordService.php -------------------------------------------------------------------------------- /app/Services/Databases/DeployServerDatabaseService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Services/Databases/DeployServerDatabaseService.php -------------------------------------------------------------------------------- /app/Services/Databases/Hosts/HostCreationService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Services/Databases/Hosts/HostCreationService.php -------------------------------------------------------------------------------- /app/Services/Databases/Hosts/HostDeletionService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Services/Databases/Hosts/HostDeletionService.php -------------------------------------------------------------------------------- /app/Services/Databases/Hosts/HostUpdateService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Services/Databases/Hosts/HostUpdateService.php -------------------------------------------------------------------------------- /app/Services/Deployment/AllocationSelectionService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Services/Deployment/AllocationSelectionService.php -------------------------------------------------------------------------------- /app/Services/Deployment/FindViableNodesService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Services/Deployment/FindViableNodesService.php -------------------------------------------------------------------------------- /app/Services/Dns/Providers/CloudflareProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Services/Dns/Providers/CloudflareProvider.php -------------------------------------------------------------------------------- /app/Services/Dns/Providers/HetznerProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Services/Dns/Providers/HetznerProvider.php -------------------------------------------------------------------------------- /app/Services/Eggs/EggConfigurationService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Services/Eggs/EggConfigurationService.php -------------------------------------------------------------------------------- /app/Services/Eggs/EggCreationService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Services/Eggs/EggCreationService.php -------------------------------------------------------------------------------- /app/Services/Eggs/EggDeletionService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Services/Eggs/EggDeletionService.php -------------------------------------------------------------------------------- /app/Services/Eggs/EggParserService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Services/Eggs/EggParserService.php -------------------------------------------------------------------------------- /app/Services/Eggs/EggUpdateService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Services/Eggs/EggUpdateService.php -------------------------------------------------------------------------------- /app/Services/Eggs/Scripts/InstallScriptService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Services/Eggs/Scripts/InstallScriptService.php -------------------------------------------------------------------------------- /app/Services/Eggs/Sharing/EggExporterService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Services/Eggs/Sharing/EggExporterService.php -------------------------------------------------------------------------------- /app/Services/Eggs/Sharing/EggImporterService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Services/Eggs/Sharing/EggImporterService.php -------------------------------------------------------------------------------- /app/Services/Eggs/Sharing/EggUpdateImporterService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Services/Eggs/Sharing/EggUpdateImporterService.php -------------------------------------------------------------------------------- /app/Services/Eggs/Variables/VariableUpdateService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Services/Eggs/Variables/VariableUpdateService.php -------------------------------------------------------------------------------- /app/Services/Elytra/ElytraJobService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Services/Elytra/ElytraJobService.php -------------------------------------------------------------------------------- /app/Services/Elytra/Jobs/BackupJob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Services/Elytra/Jobs/BackupJob.php -------------------------------------------------------------------------------- /app/Services/Helpers/SoftwareVersionService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Services/Helpers/SoftwareVersionService.php -------------------------------------------------------------------------------- /app/Services/Locations/LocationCreationService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Services/Locations/LocationCreationService.php -------------------------------------------------------------------------------- /app/Services/Locations/LocationDeletionService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Services/Locations/LocationDeletionService.php -------------------------------------------------------------------------------- /app/Services/Locations/LocationUpdateService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Services/Locations/LocationUpdateService.php -------------------------------------------------------------------------------- /app/Services/Nests/NestCreationService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Services/Nests/NestCreationService.php -------------------------------------------------------------------------------- /app/Services/Nests/NestDeletionService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Services/Nests/NestDeletionService.php -------------------------------------------------------------------------------- /app/Services/Nests/NestUpdateService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Services/Nests/NestUpdateService.php -------------------------------------------------------------------------------- /app/Services/Nodes/NodeCreationService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Services/Nodes/NodeCreationService.php -------------------------------------------------------------------------------- /app/Services/Nodes/NodeDeletionService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Services/Nodes/NodeDeletionService.php -------------------------------------------------------------------------------- /app/Services/Nodes/NodeJWTService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Services/Nodes/NodeJWTService.php -------------------------------------------------------------------------------- /app/Services/Nodes/NodeUpdateService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Services/Nodes/NodeUpdateService.php -------------------------------------------------------------------------------- /app/Services/Schedules/ProcessScheduleService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Services/Schedules/ProcessScheduleService.php -------------------------------------------------------------------------------- /app/Services/ServerOperations/EggChangeService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Services/ServerOperations/EggChangeService.php -------------------------------------------------------------------------------- /app/Services/Servers/BuildModificationService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Services/Servers/BuildModificationService.php -------------------------------------------------------------------------------- /app/Services/Servers/DetailsModificationService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Services/Servers/DetailsModificationService.php -------------------------------------------------------------------------------- /app/Services/Servers/EnvironmentService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Services/Servers/EnvironmentService.php -------------------------------------------------------------------------------- /app/Services/Servers/GetUserPermissionsService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Services/Servers/GetUserPermissionsService.php -------------------------------------------------------------------------------- /app/Services/Servers/ReinstallServerService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Services/Servers/ReinstallServerService.php -------------------------------------------------------------------------------- /app/Services/Servers/ServerCreationService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Services/Servers/ServerCreationService.php -------------------------------------------------------------------------------- /app/Services/Servers/ServerDeletionService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Services/Servers/ServerDeletionService.php -------------------------------------------------------------------------------- /app/Services/Servers/StartupCommandService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Services/Servers/StartupCommandService.php -------------------------------------------------------------------------------- /app/Services/Servers/StartupCommandUpdateService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Services/Servers/StartupCommandUpdateService.php -------------------------------------------------------------------------------- /app/Services/Servers/StartupModificationService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Services/Servers/StartupModificationService.php -------------------------------------------------------------------------------- /app/Services/Servers/SuspensionService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Services/Servers/SuspensionService.php -------------------------------------------------------------------------------- /app/Services/Servers/VariableValidatorService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Services/Servers/VariableValidatorService.php -------------------------------------------------------------------------------- /app/Services/Subdomain/SubdomainGeneratorService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Services/Subdomain/SubdomainGeneratorService.php -------------------------------------------------------------------------------- /app/Services/Subdomain/SubdomainManagementService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Services/Subdomain/SubdomainManagementService.php -------------------------------------------------------------------------------- /app/Services/Subusers/SubuserCreationService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Services/Subusers/SubuserCreationService.php -------------------------------------------------------------------------------- /app/Services/Users/ToggleTwoFactorService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Services/Users/ToggleTwoFactorService.php -------------------------------------------------------------------------------- /app/Services/Users/TwoFactorSetupService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Services/Users/TwoFactorSetupService.php -------------------------------------------------------------------------------- /app/Services/Users/UserCreationService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Services/Users/UserCreationService.php -------------------------------------------------------------------------------- /app/Services/Users/UserDeletionService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Services/Users/UserDeletionService.php -------------------------------------------------------------------------------- /app/Services/Users/UserUpdateService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Services/Users/UserUpdateService.php -------------------------------------------------------------------------------- /app/Traits/Commands/EnvironmentWriterTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Traits/Commands/EnvironmentWriterTrait.php -------------------------------------------------------------------------------- /app/Traits/Controllers/JavascriptInjection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Traits/Controllers/JavascriptInjection.php -------------------------------------------------------------------------------- /app/Traits/Controllers/PlainJavascriptInjection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Traits/Controllers/PlainJavascriptInjection.php -------------------------------------------------------------------------------- /app/Traits/Helpers/AvailableLanguages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Traits/Helpers/AvailableLanguages.php -------------------------------------------------------------------------------- /app/Traits/Services/HasUserLevels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Traits/Services/HasUserLevels.php -------------------------------------------------------------------------------- /app/Traits/Services/ReturnsUpdatedModels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Traits/Services/ReturnsUpdatedModels.php -------------------------------------------------------------------------------- /app/Traits/Services/ValidatesValidationRules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Traits/Services/ValidatesValidationRules.php -------------------------------------------------------------------------------- /app/Transformers/Api/Application/BaseTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Transformers/Api/Application/BaseTransformer.php -------------------------------------------------------------------------------- /app/Transformers/Api/Application/EggTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Transformers/Api/Application/EggTransformer.php -------------------------------------------------------------------------------- /app/Transformers/Api/Application/NestTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Transformers/Api/Application/NestTransformer.php -------------------------------------------------------------------------------- /app/Transformers/Api/Application/NodeTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Transformers/Api/Application/NodeTransformer.php -------------------------------------------------------------------------------- /app/Transformers/Api/Application/ServerTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Transformers/Api/Application/ServerTransformer.php -------------------------------------------------------------------------------- /app/Transformers/Api/Application/UserTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Transformers/Api/Application/UserTransformer.php -------------------------------------------------------------------------------- /app/Transformers/Api/Client/AccountTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Transformers/Api/Client/AccountTransformer.php -------------------------------------------------------------------------------- /app/Transformers/Api/Client/ActivityLogTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Transformers/Api/Client/ActivityLogTransformer.php -------------------------------------------------------------------------------- /app/Transformers/Api/Client/AllocationTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Transformers/Api/Client/AllocationTransformer.php -------------------------------------------------------------------------------- /app/Transformers/Api/Client/ApiKeyTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Transformers/Api/Client/ApiKeyTransformer.php -------------------------------------------------------------------------------- /app/Transformers/Api/Client/BackupTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Transformers/Api/Client/BackupTransformer.php -------------------------------------------------------------------------------- /app/Transformers/Api/Client/BaseClientTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Transformers/Api/Client/BaseClientTransformer.php -------------------------------------------------------------------------------- /app/Transformers/Api/Client/DatabaseTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Transformers/Api/Client/DatabaseTransformer.php -------------------------------------------------------------------------------- /app/Transformers/Api/Client/EggTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Transformers/Api/Client/EggTransformer.php -------------------------------------------------------------------------------- /app/Transformers/Api/Client/EggVariableTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Transformers/Api/Client/EggVariableTransformer.php -------------------------------------------------------------------------------- /app/Transformers/Api/Client/FileObjectTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Transformers/Api/Client/FileObjectTransformer.php -------------------------------------------------------------------------------- /app/Transformers/Api/Client/NestTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Transformers/Api/Client/NestTransformer.php -------------------------------------------------------------------------------- /app/Transformers/Api/Client/ScheduleTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Transformers/Api/Client/ScheduleTransformer.php -------------------------------------------------------------------------------- /app/Transformers/Api/Client/ServerTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Transformers/Api/Client/ServerTransformer.php -------------------------------------------------------------------------------- /app/Transformers/Api/Client/StatsTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Transformers/Api/Client/StatsTransformer.php -------------------------------------------------------------------------------- /app/Transformers/Api/Client/SubuserTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Transformers/Api/Client/SubuserTransformer.php -------------------------------------------------------------------------------- /app/Transformers/Api/Client/TaskTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Transformers/Api/Client/TaskTransformer.php -------------------------------------------------------------------------------- /app/Transformers/Api/Client/UserSSHKeyTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Transformers/Api/Client/UserSSHKeyTransformer.php -------------------------------------------------------------------------------- /app/Transformers/Api/Client/UserTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/Transformers/Api/Client/UserTransformer.php -------------------------------------------------------------------------------- /app/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/app/helpers.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /bootstrap/tests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/bootstrap/tests.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/composer.lock -------------------------------------------------------------------------------- /config/activity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/config/activity.php -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/backups.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/config/backups.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/captcha.php: -------------------------------------------------------------------------------- 1 | env('CAPTCHA_ENABLED', false), 5 | ]; 6 | -------------------------------------------------------------------------------- /config/compile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/config/compile.php -------------------------------------------------------------------------------- /config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/config/cors.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/config/database.php -------------------------------------------------------------------------------- /config/egg_features/eula.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/config/egg_features/eula.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/fractal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/config/fractal.php -------------------------------------------------------------------------------- /config/hashids.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/config/hashids.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/http.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/config/http.php -------------------------------------------------------------------------------- /config/javascript.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/config/javascript.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/prologue/alerts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/config/prologue/alerts.php -------------------------------------------------------------------------------- /config/pterodactyl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/config/pterodactyl.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/sanctum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/config/sanctum.php -------------------------------------------------------------------------------- /config/server_operations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/config/server_operations.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/config/session.php -------------------------------------------------------------------------------- /config/trustedproxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/config/trustedproxy.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | -------------------------------------------------------------------------------- /database/Factories/AllocationFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/database/Factories/AllocationFactory.php -------------------------------------------------------------------------------- /database/Factories/ApiKeyFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/database/Factories/ApiKeyFactory.php -------------------------------------------------------------------------------- /database/Factories/BackupFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/database/Factories/BackupFactory.php -------------------------------------------------------------------------------- /database/Factories/DatabaseFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/database/Factories/DatabaseFactory.php -------------------------------------------------------------------------------- /database/Factories/DatabaseHostFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/database/Factories/DatabaseHostFactory.php -------------------------------------------------------------------------------- /database/Factories/EggFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/database/Factories/EggFactory.php -------------------------------------------------------------------------------- /database/Factories/EggVariableFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/database/Factories/EggVariableFactory.php -------------------------------------------------------------------------------- /database/Factories/LocationFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/database/Factories/LocationFactory.php -------------------------------------------------------------------------------- /database/Factories/NestFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/database/Factories/NestFactory.php -------------------------------------------------------------------------------- /database/Factories/NodeFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/database/Factories/NodeFactory.php -------------------------------------------------------------------------------- /database/Factories/ScheduleFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/database/Factories/ScheduleFactory.php -------------------------------------------------------------------------------- /database/Factories/ServerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/database/Factories/ServerFactory.php -------------------------------------------------------------------------------- /database/Factories/SubuserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/database/Factories/SubuserFactory.php -------------------------------------------------------------------------------- /database/Factories/TaskFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/database/Factories/TaskFactory.php -------------------------------------------------------------------------------- /database/Factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/database/Factories/UserFactory.php -------------------------------------------------------------------------------- /database/Factories/UserSSHKeyFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/database/Factories/UserSSHKeyFactory.php -------------------------------------------------------------------------------- /database/Seeders/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /database/Seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/database/Seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /database/Seeders/EggSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/database/Seeders/EggSeeder.php -------------------------------------------------------------------------------- /database/Seeders/NestSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/database/Seeders/NestSeeder.php -------------------------------------------------------------------------------- /database/Seeders/eggs/minecraft/egg-bungeecord.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/database/Seeders/eggs/minecraft/egg-bungeecord.json -------------------------------------------------------------------------------- /database/Seeders/eggs/minecraft/egg-fabric.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/database/Seeders/eggs/minecraft/egg-fabric.json -------------------------------------------------------------------------------- /database/Seeders/eggs/minecraft/egg-paper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/database/Seeders/eggs/minecraft/egg-paper.json -------------------------------------------------------------------------------- /database/Seeders/eggs/minecraft/egg-purpur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/database/Seeders/eggs/minecraft/egg-purpur.json -------------------------------------------------------------------------------- /database/Seeders/eggs/rust/egg-rust.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/database/Seeders/eggs/rust/egg-rust.json -------------------------------------------------------------------------------- /database/migrations/2016_01_23_195851_add_api_keys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/database/migrations/2016_01_23_195851_add_api_keys.php -------------------------------------------------------------------------------- /database/migrations/2016_01_23_200648_add_nodes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/database/migrations/2016_01_23_200648_add_nodes.php -------------------------------------------------------------------------------- /database/migrations/2016_01_23_201748_add_servers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/database/migrations/2016_01_23_201748_add_servers.php -------------------------------------------------------------------------------- /database/migrations/2016_01_23_202943_add_services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/database/migrations/2016_01_23_202943_add_services.php -------------------------------------------------------------------------------- /database/migrations/2016_01_23_203150_add_subusers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/database/migrations/2016_01_23_203150_add_subusers.php -------------------------------------------------------------------------------- /database/migrations/2016_01_23_203159_add_users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/database/migrations/2016_01_23_203159_add_users.php -------------------------------------------------------------------------------- /database/migrations/2016_08_30_212718_add_ip_alias.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/database/migrations/2016_08_30_212718_add_ip_alias.php -------------------------------------------------------------------------------- /database/schema/mysql-schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/database/schema/mysql-schema.sql -------------------------------------------------------------------------------- /docker-compose.develop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/docker-compose.develop.yml -------------------------------------------------------------------------------- /docker-compose.example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/docker-compose.example.yml -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/eslint.config.js -------------------------------------------------------------------------------- /nix/buildsteps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/nix/buildsteps.sh -------------------------------------------------------------------------------- /nix/caddyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/nix/caddyfile -------------------------------------------------------------------------------- /nix/docker/maria/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/nix/docker/maria/docker-compose.yml -------------------------------------------------------------------------------- /nix/docker/wings/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/nix/docker/wings/docker-compose.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/package.json -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/phpstan.neon -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/phpunit.xml -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/.gitignore -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/assets/svgs/not_found.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/assets/svgs/not_found.svg -------------------------------------------------------------------------------- /public/assets/svgs/pterodactyl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/assets/svgs/pterodactyl.svg -------------------------------------------------------------------------------- /public/assets/svgs/server_error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/assets/svgs/server_error.svg -------------------------------------------------------------------------------- /public/assets/svgs/server_installing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/assets/svgs/server_installing.svg -------------------------------------------------------------------------------- /public/favicons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/favicons/apple-touch-icon.png -------------------------------------------------------------------------------- /public/favicons/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/favicons/favicon-96x96.png -------------------------------------------------------------------------------- /public/favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/favicons/favicon.ico -------------------------------------------------------------------------------- /public/favicons/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/favicons/favicon.svg -------------------------------------------------------------------------------- /public/favicons/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/favicons/site.webmanifest -------------------------------------------------------------------------------- /public/favicons/web-app-manifest-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/favicons/web-app-manifest-192x192.png -------------------------------------------------------------------------------- /public/favicons/web-app-manifest-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/favicons/web-app-manifest-512x512.png -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/index.php -------------------------------------------------------------------------------- /public/js/autocomplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/js/autocomplete.js -------------------------------------------------------------------------------- /public/js/keyboard.polyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/js/keyboard.polyfill.js -------------------------------------------------------------------------------- /public/js/laroute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/js/laroute.js -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / 3 | -------------------------------------------------------------------------------- /public/themes/pterodactyl/css/checkbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/themes/pterodactyl/css/checkbox.css -------------------------------------------------------------------------------- /public/themes/pterodactyl/css/pterodactyl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/themes/pterodactyl/css/pterodactyl.css -------------------------------------------------------------------------------- /public/themes/pterodactyl/css/terminal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/themes/pterodactyl/css/terminal.css -------------------------------------------------------------------------------- /public/themes/pterodactyl/js/admin/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/themes/pterodactyl/js/admin/functions.js -------------------------------------------------------------------------------- /public/themes/pterodactyl/js/admin/new-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/themes/pterodactyl/js/admin/new-server.js -------------------------------------------------------------------------------- /public/themes/pterodactyl/js/admin/server/transfer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/themes/pterodactyl/js/admin/server/transfer.js -------------------------------------------------------------------------------- /public/themes/pterodactyl/js/plugins/minecraft/eula.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/themes/pterodactyl/js/plugins/minecraft/eula.js -------------------------------------------------------------------------------- /public/themes/pterodactyl/vendor/ace/ace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/themes/pterodactyl/vendor/ace/ace.js -------------------------------------------------------------------------------- /public/themes/pterodactyl/vendor/ace/ext-linking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/themes/pterodactyl/vendor/ace/ext-linking.js -------------------------------------------------------------------------------- /public/themes/pterodactyl/vendor/ace/ext-modelist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/themes/pterodactyl/vendor/ace/ext-modelist.js -------------------------------------------------------------------------------- /public/themes/pterodactyl/vendor/ace/ext-old_ie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/themes/pterodactyl/vendor/ace/ext-old_ie.js -------------------------------------------------------------------------------- /public/themes/pterodactyl/vendor/ace/ext-searchbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/themes/pterodactyl/vendor/ace/ext-searchbox.js -------------------------------------------------------------------------------- /public/themes/pterodactyl/vendor/ace/ext-spellcheck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/themes/pterodactyl/vendor/ace/ext-spellcheck.js -------------------------------------------------------------------------------- /public/themes/pterodactyl/vendor/ace/ext-split.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/themes/pterodactyl/vendor/ace/ext-split.js -------------------------------------------------------------------------------- /public/themes/pterodactyl/vendor/ace/ext-textarea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/themes/pterodactyl/vendor/ace/ext-textarea.js -------------------------------------------------------------------------------- /public/themes/pterodactyl/vendor/ace/ext-themelist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/themes/pterodactyl/vendor/ace/ext-themelist.js -------------------------------------------------------------------------------- /public/themes/pterodactyl/vendor/ace/ext-whitespace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/themes/pterodactyl/vendor/ace/ext-whitespace.js -------------------------------------------------------------------------------- /public/themes/pterodactyl/vendor/ace/keybinding-vim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/themes/pterodactyl/vendor/ace/keybinding-vim.js -------------------------------------------------------------------------------- /public/themes/pterodactyl/vendor/ace/mode-c_cpp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/themes/pterodactyl/vendor/ace/mode-c_cpp.js -------------------------------------------------------------------------------- /public/themes/pterodactyl/vendor/ace/mode-coffee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/themes/pterodactyl/vendor/ace/mode-coffee.js -------------------------------------------------------------------------------- /public/themes/pterodactyl/vendor/ace/mode-csharp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/themes/pterodactyl/vendor/ace/mode-csharp.js -------------------------------------------------------------------------------- /public/themes/pterodactyl/vendor/ace/mode-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/themes/pterodactyl/vendor/ace/mode-css.js -------------------------------------------------------------------------------- /public/themes/pterodactyl/vendor/ace/mode-golang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/themes/pterodactyl/vendor/ace/mode-golang.js -------------------------------------------------------------------------------- /public/themes/pterodactyl/vendor/ace/mode-haml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/themes/pterodactyl/vendor/ace/mode-haml.js -------------------------------------------------------------------------------- /public/themes/pterodactyl/vendor/ace/mode-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/themes/pterodactyl/vendor/ace/mode-html.js -------------------------------------------------------------------------------- /public/themes/pterodactyl/vendor/ace/mode-ini.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/themes/pterodactyl/vendor/ace/mode-ini.js -------------------------------------------------------------------------------- /public/themes/pterodactyl/vendor/ace/mode-java.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/themes/pterodactyl/vendor/ace/mode-java.js -------------------------------------------------------------------------------- /public/themes/pterodactyl/vendor/ace/mode-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/themes/pterodactyl/vendor/ace/mode-json.js -------------------------------------------------------------------------------- /public/themes/pterodactyl/vendor/ace/mode-kotlin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/themes/pterodactyl/vendor/ace/mode-kotlin.js -------------------------------------------------------------------------------- /public/themes/pterodactyl/vendor/ace/mode-lua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/themes/pterodactyl/vendor/ace/mode-lua.js -------------------------------------------------------------------------------- /public/themes/pterodactyl/vendor/ace/mode-markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/themes/pterodactyl/vendor/ace/mode-markdown.js -------------------------------------------------------------------------------- /public/themes/pterodactyl/vendor/ace/mode-mysql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/themes/pterodactyl/vendor/ace/mode-mysql.js -------------------------------------------------------------------------------- /public/themes/pterodactyl/vendor/ace/mode-perl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/themes/pterodactyl/vendor/ace/mode-perl.js -------------------------------------------------------------------------------- /public/themes/pterodactyl/vendor/ace/mode-php.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/themes/pterodactyl/vendor/ace/mode-php.js -------------------------------------------------------------------------------- /public/themes/pterodactyl/vendor/ace/mode-python.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/themes/pterodactyl/vendor/ace/mode-python.js -------------------------------------------------------------------------------- /public/themes/pterodactyl/vendor/ace/mode-ruby.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/themes/pterodactyl/vendor/ace/mode-ruby.js -------------------------------------------------------------------------------- /public/themes/pterodactyl/vendor/ace/mode-rust.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/themes/pterodactyl/vendor/ace/mode-rust.js -------------------------------------------------------------------------------- /public/themes/pterodactyl/vendor/ace/mode-sh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/themes/pterodactyl/vendor/ace/mode-sh.js -------------------------------------------------------------------------------- /public/themes/pterodactyl/vendor/ace/mode-smarty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/themes/pterodactyl/vendor/ace/mode-smarty.js -------------------------------------------------------------------------------- /public/themes/pterodactyl/vendor/ace/mode-sql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/themes/pterodactyl/vendor/ace/mode-sql.js -------------------------------------------------------------------------------- /public/themes/pterodactyl/vendor/ace/mode-xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/themes/pterodactyl/vendor/ace/mode-xml.js -------------------------------------------------------------------------------- /public/themes/pterodactyl/vendor/ace/mode-yaml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/themes/pterodactyl/vendor/ace/mode-yaml.js -------------------------------------------------------------------------------- /public/themes/pterodactyl/vendor/ace/theme-chrome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/themes/pterodactyl/vendor/ace/theme-chrome.js -------------------------------------------------------------------------------- /public/themes/pterodactyl/vendor/ace/worker-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/themes/pterodactyl/vendor/ace/worker-css.js -------------------------------------------------------------------------------- /public/themes/pterodactyl/vendor/ace/worker-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/themes/pterodactyl/vendor/ace/worker-html.js -------------------------------------------------------------------------------- /public/themes/pterodactyl/vendor/ace/worker-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/themes/pterodactyl/vendor/ace/worker-json.js -------------------------------------------------------------------------------- /public/themes/pterodactyl/vendor/ace/worker-lua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/themes/pterodactyl/vendor/ace/worker-lua.js -------------------------------------------------------------------------------- /public/themes/pterodactyl/vendor/ace/worker-php.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/themes/pterodactyl/vendor/ace/worker-php.js -------------------------------------------------------------------------------- /public/themes/pterodactyl/vendor/ace/worker-xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/themes/pterodactyl/vendor/ace/worker-xml.js -------------------------------------------------------------------------------- /public/themes/pterodactyl/vendor/adminlte/app.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/themes/pterodactyl/vendor/adminlte/app.min.js -------------------------------------------------------------------------------- /public/themes/pterodactyl/vendor/ansi/ansi_up.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/themes/pterodactyl/vendor/ansi/ansi_up.js -------------------------------------------------------------------------------- /public/themes/pterodactyl/vendor/async/async.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/themes/pterodactyl/vendor/async/async.min.js -------------------------------------------------------------------------------- /public/themes/pterodactyl/vendor/async/async.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/themes/pterodactyl/vendor/async/async.min.map -------------------------------------------------------------------------------- /public/themes/pterodactyl/vendor/chartjs/chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/themes/pterodactyl/vendor/chartjs/chart.min.js -------------------------------------------------------------------------------- /public/themes/pterodactyl/vendor/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/themes/pterodactyl/vendor/jquery/jquery.js -------------------------------------------------------------------------------- /public/themes/pterodactyl/vendor/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/themes/pterodactyl/vendor/jquery/jquery.min.js -------------------------------------------------------------------------------- /public/themes/pterodactyl/vendor/jquery/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/themes/pterodactyl/vendor/jquery/jquery.min.map -------------------------------------------------------------------------------- /public/themes/pterodactyl/vendor/lodash/lodash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/themes/pterodactyl/vendor/lodash/lodash.js -------------------------------------------------------------------------------- /public/themes/pterodactyl/vendor/siofu/client.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/public/themes/pterodactyl/vendor/siofu/client.min.js -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/lang/en/activity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/lang/en/activity.php -------------------------------------------------------------------------------- /resources/lang/en/admin/nests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/lang/en/admin/nests.php -------------------------------------------------------------------------------- /resources/lang/en/admin/node.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/lang/en/admin/node.php -------------------------------------------------------------------------------- /resources/lang/en/admin/server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/lang/en/admin/server.php -------------------------------------------------------------------------------- /resources/lang/en/admin/user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/lang/en/admin/user.php -------------------------------------------------------------------------------- /resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/lang/en/auth.php -------------------------------------------------------------------------------- /resources/lang/en/command/messages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/lang/en/command/messages.php -------------------------------------------------------------------------------- /resources/lang/en/dashboard/account.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/lang/en/dashboard/account.php -------------------------------------------------------------------------------- /resources/lang/en/dashboard/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/lang/en/dashboard/index.php -------------------------------------------------------------------------------- /resources/lang/en/exceptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/lang/en/exceptions.php -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /resources/lang/en/server/users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/lang/en/server/users.php -------------------------------------------------------------------------------- /resources/lang/en/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/lang/en/strings.php -------------------------------------------------------------------------------- /resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/lang/en/validation.php -------------------------------------------------------------------------------- /resources/scripts/__mocks__/file.ts: -------------------------------------------------------------------------------- 1 | export default 'test-file-stub'; 2 | -------------------------------------------------------------------------------- /resources/scripts/api/account/activity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/api/account/activity.ts -------------------------------------------------------------------------------- /resources/scripts/api/account/createApiKey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/api/account/createApiKey.ts -------------------------------------------------------------------------------- /resources/scripts/api/account/deleteApiKey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/api/account/deleteApiKey.ts -------------------------------------------------------------------------------- /resources/scripts/api/account/getApiKeys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/api/account/getApiKeys.ts -------------------------------------------------------------------------------- /resources/scripts/api/account/getTwoFactorTokenData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/api/account/getTwoFactorTokenData.ts -------------------------------------------------------------------------------- /resources/scripts/api/account/ssh-keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/api/account/ssh-keys.ts -------------------------------------------------------------------------------- /resources/scripts/api/account/updateAccountEmail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/api/account/updateAccountEmail.ts -------------------------------------------------------------------------------- /resources/scripts/api/account/updateAccountPassword.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/api/account/updateAccountPassword.ts -------------------------------------------------------------------------------- /resources/scripts/api/auth/login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/api/auth/login.ts -------------------------------------------------------------------------------- /resources/scripts/api/auth/loginCheckpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/api/auth/loginCheckpoint.ts -------------------------------------------------------------------------------- /resources/scripts/api/auth/performPasswordReset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/api/auth/performPasswordReset.ts -------------------------------------------------------------------------------- /resources/scripts/api/definitions/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/api/definitions/helpers.ts -------------------------------------------------------------------------------- /resources/scripts/api/definitions/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/api/definitions/index.d.ts -------------------------------------------------------------------------------- /resources/scripts/api/definitions/user/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/api/definitions/user/index.ts -------------------------------------------------------------------------------- /resources/scripts/api/definitions/user/models.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/api/definitions/user/models.d.ts -------------------------------------------------------------------------------- /resources/scripts/api/definitions/user/transformers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/api/definitions/user/transformers.ts -------------------------------------------------------------------------------- /resources/scripts/api/getServers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/api/getServers.ts -------------------------------------------------------------------------------- /resources/scripts/api/getSystemPermissions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/api/getSystemPermissions.ts -------------------------------------------------------------------------------- /resources/scripts/api/http.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/api/http.ts -------------------------------------------------------------------------------- /resources/scripts/api/interceptors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/api/interceptors.ts -------------------------------------------------------------------------------- /resources/scripts/api/mclo.gs/mclogsApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/api/mclo.gs/mclogsApi.ts -------------------------------------------------------------------------------- /resources/scripts/api/nests/getNests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/api/nests/getNests.ts -------------------------------------------------------------------------------- /resources/scripts/api/server/activity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/api/server/activity.ts -------------------------------------------------------------------------------- /resources/scripts/api/server/applyEggChange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/api/server/applyEggChange.ts -------------------------------------------------------------------------------- /resources/scripts/api/server/backups/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/api/server/backups/index.ts -------------------------------------------------------------------------------- /resources/scripts/api/server/backups/retryBackup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/api/server/backups/retryBackup.ts -------------------------------------------------------------------------------- /resources/scripts/api/server/files/chmodFiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/api/server/files/chmodFiles.ts -------------------------------------------------------------------------------- /resources/scripts/api/server/files/compressFiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/api/server/files/compressFiles.ts -------------------------------------------------------------------------------- /resources/scripts/api/server/files/copyFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/api/server/files/copyFile.ts -------------------------------------------------------------------------------- /resources/scripts/api/server/files/createDirectory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/api/server/files/createDirectory.ts -------------------------------------------------------------------------------- /resources/scripts/api/server/files/decompressFiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/api/server/files/decompressFiles.ts -------------------------------------------------------------------------------- /resources/scripts/api/server/files/deleteFiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/api/server/files/deleteFiles.ts -------------------------------------------------------------------------------- /resources/scripts/api/server/files/getFileContents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/api/server/files/getFileContents.ts -------------------------------------------------------------------------------- /resources/scripts/api/server/files/getFileUploadUrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/api/server/files/getFileUploadUrl.ts -------------------------------------------------------------------------------- /resources/scripts/api/server/files/loadDirectory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/api/server/files/loadDirectory.ts -------------------------------------------------------------------------------- /resources/scripts/api/server/files/renameFiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/api/server/files/renameFiles.ts -------------------------------------------------------------------------------- /resources/scripts/api/server/files/saveFileContents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/api/server/files/saveFileContents.ts -------------------------------------------------------------------------------- /resources/scripts/api/server/getServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/api/server/getServer.ts -------------------------------------------------------------------------------- /resources/scripts/api/server/getServerResourceUsage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/api/server/getServerResourceUsage.ts -------------------------------------------------------------------------------- /resources/scripts/api/server/getWebsocketToken.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/api/server/getWebsocketToken.ts -------------------------------------------------------------------------------- /resources/scripts/api/server/network/subdomain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/api/server/network/subdomain.ts -------------------------------------------------------------------------------- /resources/scripts/api/server/previewEggChange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/api/server/previewEggChange.ts -------------------------------------------------------------------------------- /resources/scripts/api/server/processStartupCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/api/server/processStartupCommand.ts -------------------------------------------------------------------------------- /resources/scripts/api/server/reinstallServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/api/server/reinstallServer.ts -------------------------------------------------------------------------------- /resources/scripts/api/server/renameServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/api/server/renameServer.ts -------------------------------------------------------------------------------- /resources/scripts/api/server/resetStartupCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/api/server/resetStartupCommand.ts -------------------------------------------------------------------------------- /resources/scripts/api/server/revertDockerImage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/api/server/revertDockerImage.ts -------------------------------------------------------------------------------- /resources/scripts/api/server/serverOperations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/api/server/serverOperations.ts -------------------------------------------------------------------------------- /resources/scripts/api/server/setSelectedDockerImage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/api/server/setSelectedDockerImage.ts -------------------------------------------------------------------------------- /resources/scripts/api/server/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/api/server/types.d.ts -------------------------------------------------------------------------------- /resources/scripts/api/server/updateStartupCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/api/server/updateStartupCommand.ts -------------------------------------------------------------------------------- /resources/scripts/api/server/updateStartupVariable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/api/server/updateStartupVariable.ts -------------------------------------------------------------------------------- /resources/scripts/api/server/users/deleteSubuser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/api/server/users/deleteSubuser.ts -------------------------------------------------------------------------------- /resources/scripts/api/swr/getServerAllocations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/api/swr/getServerAllocations.ts -------------------------------------------------------------------------------- /resources/scripts/api/swr/getServerBackups.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/api/swr/getServerBackups.ts -------------------------------------------------------------------------------- /resources/scripts/api/swr/getServerStartup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/api/swr/getServerStartup.ts -------------------------------------------------------------------------------- /resources/scripts/api/transformers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/api/transformers.ts -------------------------------------------------------------------------------- /resources/scripts/assets/css/GlobalStylesheet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/assets/css/GlobalStylesheet.ts -------------------------------------------------------------------------------- /resources/scripts/assets/globals.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/scripts/assets/images/not_found.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/assets/images/not_found.svg -------------------------------------------------------------------------------- /resources/scripts/assets/images/pterodactyl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/assets/images/pterodactyl.svg -------------------------------------------------------------------------------- /resources/scripts/assets/images/server_error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/assets/images/server_error.svg -------------------------------------------------------------------------------- /resources/scripts/assets/images/server_installing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/assets/images/server_installing.svg -------------------------------------------------------------------------------- /resources/scripts/assets/images/server_restore.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/assets/images/server_restore.svg -------------------------------------------------------------------------------- /resources/scripts/assets/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/assets/tailwind.css -------------------------------------------------------------------------------- /resources/scripts/components/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/components/App.tsx -------------------------------------------------------------------------------- /resources/scripts/components/FlashMessageRender.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/components/FlashMessageRender.tsx -------------------------------------------------------------------------------- /resources/scripts/components/MessageBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/components/MessageBox.tsx -------------------------------------------------------------------------------- /resources/scripts/components/PyrodactylProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/components/PyrodactylProvider.tsx -------------------------------------------------------------------------------- /resources/scripts/components/auth/LoginContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/components/auth/LoginContainer.tsx -------------------------------------------------------------------------------- /resources/scripts/components/dashboard/ApiKeyModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/components/dashboard/ApiKeyModal.tsx -------------------------------------------------------------------------------- /resources/scripts/components/dashboard/ServerRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/components/dashboard/ServerRow.tsx -------------------------------------------------------------------------------- /resources/scripts/components/elements/ActionButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/components/elements/ActionButton.tsx -------------------------------------------------------------------------------- /resources/scripts/components/elements/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/components/elements/Button.tsx -------------------------------------------------------------------------------- /resources/scripts/components/elements/ButtonV2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/components/elements/ButtonV2.tsx -------------------------------------------------------------------------------- /resources/scripts/components/elements/Can.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/components/elements/Can.tsx -------------------------------------------------------------------------------- /resources/scripts/components/elements/Captcha.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/components/elements/Captcha.tsx -------------------------------------------------------------------------------- /resources/scripts/components/elements/CheckBoxMods.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/components/elements/CheckBoxMods.tsx -------------------------------------------------------------------------------- /resources/scripts/components/elements/Checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/components/elements/Checkbox.tsx -------------------------------------------------------------------------------- /resources/scripts/components/elements/CheckboxNew.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/components/elements/CheckboxNew.tsx -------------------------------------------------------------------------------- /resources/scripts/components/elements/Code.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/components/elements/Code.tsx -------------------------------------------------------------------------------- /resources/scripts/components/elements/ContentBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/components/elements/ContentBox.tsx -------------------------------------------------------------------------------- /resources/scripts/components/elements/ContextMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/components/elements/ContextMenu.tsx -------------------------------------------------------------------------------- /resources/scripts/components/elements/CopyOnClick.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/components/elements/CopyOnClick.tsx -------------------------------------------------------------------------------- /resources/scripts/components/elements/DropdownMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/components/elements/DropdownMenu.tsx -------------------------------------------------------------------------------- /resources/scripts/components/elements/Field.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/components/elements/Field.tsx -------------------------------------------------------------------------------- /resources/scripts/components/elements/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/components/elements/Input.tsx -------------------------------------------------------------------------------- /resources/scripts/components/elements/Label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/components/elements/Label.tsx -------------------------------------------------------------------------------- /resources/scripts/components/elements/LabelNew.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/components/elements/LabelNew.tsx -------------------------------------------------------------------------------- /resources/scripts/components/elements/MainPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/components/elements/MainPage.tsx -------------------------------------------------------------------------------- /resources/scripts/components/elements/ModBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/components/elements/ModBox.tsx -------------------------------------------------------------------------------- /resources/scripts/components/elements/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/components/elements/Modal.tsx -------------------------------------------------------------------------------- /resources/scripts/components/elements/PyroLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/components/elements/PyroLogo.tsx -------------------------------------------------------------------------------- /resources/scripts/components/elements/Select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/components/elements/Select.tsx -------------------------------------------------------------------------------- /resources/scripts/components/elements/Spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/components/elements/Spinner.tsx -------------------------------------------------------------------------------- /resources/scripts/components/elements/Switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/components/elements/Switch.tsx -------------------------------------------------------------------------------- /resources/scripts/components/elements/SwitchV2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/components/elements/SwitchV2.tsx -------------------------------------------------------------------------------- /resources/scripts/components/elements/Tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/components/elements/Tabs.tsx -------------------------------------------------------------------------------- /resources/scripts/components/elements/TextInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/components/elements/TextInput.tsx -------------------------------------------------------------------------------- /resources/scripts/components/history.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/components/history.ts -------------------------------------------------------------------------------- /resources/scripts/components/server/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/components/server/events.ts -------------------------------------------------------------------------------- /resources/scripts/components/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/components/types.ts -------------------------------------------------------------------------------- /resources/scripts/context/ModalContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/context/ModalContext.ts -------------------------------------------------------------------------------- /resources/scripts/easy-peasy.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/easy-peasy.d.ts -------------------------------------------------------------------------------- /resources/scripts/globals.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/globals.d.ts -------------------------------------------------------------------------------- /resources/scripts/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/helpers.ts -------------------------------------------------------------------------------- /resources/scripts/helpers/captcha.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/helpers/captcha.ts -------------------------------------------------------------------------------- /resources/scripts/hoc/RequireServerPermission.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/hoc/RequireServerPermission.tsx -------------------------------------------------------------------------------- /resources/scripts/hoc/asDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/hoc/asDialog.tsx -------------------------------------------------------------------------------- /resources/scripts/hoc/asModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/hoc/asModal.tsx -------------------------------------------------------------------------------- /resources/scripts/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/index.tsx -------------------------------------------------------------------------------- /resources/scripts/lib/captcha/CaptchaManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/lib/captcha/CaptchaManager.ts -------------------------------------------------------------------------------- /resources/scripts/lib/captcha/CaptchaProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/lib/captcha/CaptchaProvider.ts -------------------------------------------------------------------------------- /resources/scripts/lib/captcha/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/lib/captcha/index.ts -------------------------------------------------------------------------------- /resources/scripts/lib/captcha/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/lib/captcha/types.ts -------------------------------------------------------------------------------- /resources/scripts/lib/formatters.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/lib/formatters.spec.ts -------------------------------------------------------------------------------- /resources/scripts/lib/formatters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/lib/formatters.ts -------------------------------------------------------------------------------- /resources/scripts/lib/helpers.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/lib/helpers.spec.ts -------------------------------------------------------------------------------- /resources/scripts/lib/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/lib/helpers.ts -------------------------------------------------------------------------------- /resources/scripts/lib/mclogsUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/lib/mclogsUtils.ts -------------------------------------------------------------------------------- /resources/scripts/lib/objects.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/lib/objects.spec.ts -------------------------------------------------------------------------------- /resources/scripts/lib/objects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/lib/objects.ts -------------------------------------------------------------------------------- /resources/scripts/lib/server-operations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/lib/server-operations.ts -------------------------------------------------------------------------------- /resources/scripts/lib/strings.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/lib/strings.spec.ts -------------------------------------------------------------------------------- /resources/scripts/lib/strings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/lib/strings.ts -------------------------------------------------------------------------------- /resources/scripts/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/lib/utils.ts -------------------------------------------------------------------------------- /resources/scripts/macros.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/macros.d.ts -------------------------------------------------------------------------------- /resources/scripts/modes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/modes.ts -------------------------------------------------------------------------------- /resources/scripts/plugins/Websocket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/plugins/Websocket.ts -------------------------------------------------------------------------------- /resources/scripts/plugins/useDeepCompareEffect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/plugins/useDeepCompareEffect.ts -------------------------------------------------------------------------------- /resources/scripts/plugins/useDeepCompareMemo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/plugins/useDeepCompareMemo.ts -------------------------------------------------------------------------------- /resources/scripts/plugins/useDeepMemoize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/plugins/useDeepMemoize.ts -------------------------------------------------------------------------------- /resources/scripts/plugins/useEventListener.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/plugins/useEventListener.ts -------------------------------------------------------------------------------- /resources/scripts/plugins/useFileManagerSwr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/plugins/useFileManagerSwr.ts -------------------------------------------------------------------------------- /resources/scripts/plugins/useFilteredObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/plugins/useFilteredObject.ts -------------------------------------------------------------------------------- /resources/scripts/plugins/useFlash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/plugins/useFlash.ts -------------------------------------------------------------------------------- /resources/scripts/plugins/useLocationHash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/plugins/useLocationHash.ts -------------------------------------------------------------------------------- /resources/scripts/plugins/usePermissions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/plugins/usePermissions.ts -------------------------------------------------------------------------------- /resources/scripts/plugins/usePersistedState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/plugins/usePersistedState.ts -------------------------------------------------------------------------------- /resources/scripts/plugins/useSWRKey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/plugins/useSWRKey.ts -------------------------------------------------------------------------------- /resources/scripts/plugins/useVW.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/plugins/useVW.ts -------------------------------------------------------------------------------- /resources/scripts/plugins/useWebsocketEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/plugins/useWebsocketEvent.ts -------------------------------------------------------------------------------- /resources/scripts/routers/AuthenticationRouter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/routers/AuthenticationRouter.tsx -------------------------------------------------------------------------------- /resources/scripts/routers/DashboardRouter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/routers/DashboardRouter.tsx -------------------------------------------------------------------------------- /resources/scripts/routers/ServerRouter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/routers/ServerRouter.tsx -------------------------------------------------------------------------------- /resources/scripts/routers/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/routers/routes.ts -------------------------------------------------------------------------------- /resources/scripts/state/flashes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/state/flashes.ts -------------------------------------------------------------------------------- /resources/scripts/state/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/state/hooks.ts -------------------------------------------------------------------------------- /resources/scripts/state/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/state/index.ts -------------------------------------------------------------------------------- /resources/scripts/state/permissions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/state/permissions.ts -------------------------------------------------------------------------------- /resources/scripts/state/progress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/state/progress.ts -------------------------------------------------------------------------------- /resources/scripts/state/server/databases.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/state/server/databases.ts -------------------------------------------------------------------------------- /resources/scripts/state/server/files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/state/server/files.ts -------------------------------------------------------------------------------- /resources/scripts/state/server/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/state/server/index.ts -------------------------------------------------------------------------------- /resources/scripts/state/server/schedules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/state/server/schedules.ts -------------------------------------------------------------------------------- /resources/scripts/state/server/socket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/state/server/socket.ts -------------------------------------------------------------------------------- /resources/scripts/state/server/subusers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/state/server/subusers.ts -------------------------------------------------------------------------------- /resources/scripts/state/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/state/settings.ts -------------------------------------------------------------------------------- /resources/scripts/state/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/state/user.ts -------------------------------------------------------------------------------- /resources/scripts/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/scripts/vite-env.d.ts -------------------------------------------------------------------------------- /resources/views/admin/api/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/views/admin/api/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/api/new.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/views/admin/api/new.blade.php -------------------------------------------------------------------------------- /resources/views/admin/databases/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/views/admin/databases/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/databases/view.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/views/admin/databases/view.blade.php -------------------------------------------------------------------------------- /resources/views/admin/eggs/new.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/views/admin/eggs/new.blade.php -------------------------------------------------------------------------------- /resources/views/admin/eggs/scripts.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/views/admin/eggs/scripts.blade.php -------------------------------------------------------------------------------- /resources/views/admin/eggs/variables.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/views/admin/eggs/variables.blade.php -------------------------------------------------------------------------------- /resources/views/admin/eggs/view.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/views/admin/eggs/view.blade.php -------------------------------------------------------------------------------- /resources/views/admin/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/views/admin/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/locations/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/views/admin/locations/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/locations/view.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/views/admin/locations/view.blade.php -------------------------------------------------------------------------------- /resources/views/admin/mounts/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/views/admin/mounts/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/mounts/view.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/views/admin/mounts/view.blade.php -------------------------------------------------------------------------------- /resources/views/admin/nests/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/views/admin/nests/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/nests/new.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/views/admin/nests/new.blade.php -------------------------------------------------------------------------------- /resources/views/admin/nests/view.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/views/admin/nests/view.blade.php -------------------------------------------------------------------------------- /resources/views/admin/nodes/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/views/admin/nodes/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/nodes/new.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/views/admin/nodes/new.blade.php -------------------------------------------------------------------------------- /resources/views/admin/nodes/view/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/views/admin/nodes/view/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/nodes/view/servers.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/views/admin/nodes/view/servers.blade.php -------------------------------------------------------------------------------- /resources/views/admin/nodes/view/settings.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/views/admin/nodes/view/settings.blade.php -------------------------------------------------------------------------------- /resources/views/admin/servers/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/views/admin/servers/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/servers/new.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/views/admin/servers/new.blade.php -------------------------------------------------------------------------------- /resources/views/admin/servers/view/build.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/views/admin/servers/view/build.blade.php -------------------------------------------------------------------------------- /resources/views/admin/servers/view/delete.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/views/admin/servers/view/delete.blade.php -------------------------------------------------------------------------------- /resources/views/admin/servers/view/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/views/admin/servers/view/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/servers/view/manage.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/views/admin/servers/view/manage.blade.php -------------------------------------------------------------------------------- /resources/views/admin/servers/view/mounts.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/views/admin/servers/view/mounts.blade.php -------------------------------------------------------------------------------- /resources/views/admin/settings/advanced.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/views/admin/settings/advanced.blade.php -------------------------------------------------------------------------------- /resources/views/admin/settings/captcha.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/views/admin/settings/captcha.blade.php -------------------------------------------------------------------------------- /resources/views/admin/settings/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/views/admin/settings/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/settings/mail.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/views/admin/settings/mail.blade.php -------------------------------------------------------------------------------- /resources/views/admin/users/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/views/admin/users/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/users/new.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/views/admin/users/new.blade.php -------------------------------------------------------------------------------- /resources/views/admin/users/view.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/views/admin/users/view.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/admin.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/views/layouts/admin.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/scripts.blade.php: -------------------------------------------------------------------------------- 1 | {{-- Just here as a binder for dynamically rendered content. --}} 2 | -------------------------------------------------------------------------------- /resources/views/templates/auth/core.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/views/templates/auth/core.blade.php -------------------------------------------------------------------------------- /resources/views/templates/base/core.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/views/templates/base/core.blade.php -------------------------------------------------------------------------------- /resources/views/templates/wrapper.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/views/templates/wrapper.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/pagination/default.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/resources/views/vendor/pagination/default.blade.php -------------------------------------------------------------------------------- /routes/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/routes/admin.php -------------------------------------------------------------------------------- /routes/api-application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/routes/api-application.php -------------------------------------------------------------------------------- /routes/api-client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/routes/api-client.php -------------------------------------------------------------------------------- /routes/api-remote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/routes/api-remote.php -------------------------------------------------------------------------------- /routes/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/routes/auth.php -------------------------------------------------------------------------------- /routes/base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/routes/base.php -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/storage/app/.gitignore -------------------------------------------------------------------------------- /storage/app/private/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/clockwork/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/storage/framework/.gitignore -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore -------------------------------------------------------------------------------- /storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/Assertions/AssertsActivityLogged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/tests/Assertions/AssertsActivityLogged.php -------------------------------------------------------------------------------- /tests/Integration/IntegrationTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/tests/Integration/IntegrationTestCase.php -------------------------------------------------------------------------------- /tests/Integration/Jobs/Schedule/RunTaskJobTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/tests/Integration/Jobs/Schedule/RunTaskJobTest.php -------------------------------------------------------------------------------- /tests/Integration/TestResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/tests/Integration/TestResponse.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Traits/Http/MocksMiddlewareClosure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/tests/Traits/Http/MocksMiddlewareClosure.php -------------------------------------------------------------------------------- /tests/Traits/Http/RequestMockHelpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/tests/Traits/Http/RequestMockHelpers.php -------------------------------------------------------------------------------- /tests/Traits/Integration/CreatesTestModels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/tests/Traits/Integration/CreatesTestModels.php -------------------------------------------------------------------------------- /tests/Traits/MocksPdoConnection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/tests/Traits/MocksPdoConnection.php -------------------------------------------------------------------------------- /tests/Traits/MocksRequestException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/tests/Traits/MocksRequestException.php -------------------------------------------------------------------------------- /tests/Traits/MocksUuids.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/tests/Traits/MocksUuids.php -------------------------------------------------------------------------------- /tests/Unit/Helpers/EnvironmentWriterTraitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/tests/Unit/Helpers/EnvironmentWriterTraitTest.php -------------------------------------------------------------------------------- /tests/Unit/Helpers/IsDigitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/tests/Unit/Helpers/IsDigitTest.php -------------------------------------------------------------------------------- /tests/Unit/Http/Middleware/MiddlewareTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/tests/Unit/Http/Middleware/MiddlewareTestCase.php -------------------------------------------------------------------------------- /tests/Unit/Rules/UsernameTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/tests/Unit/Rules/UsernameTest.php -------------------------------------------------------------------------------- /tests/Unit/Services/Acl/Api/AdminAclTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/tests/Unit/Services/Acl/Api/AdminAclTest.php -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/tsconfig.json -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/turbo.json -------------------------------------------------------------------------------- /vagrant/provision.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/vagrant/provision.sh -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/pyrodactyl/HEAD/vite.config.ts --------------------------------------------------------------------------------