├── .babelrc ├── .claude └── commands │ └── conversation-analysis-system.md ├── .dev ├── dev-apache-site.conf ├── dev-apache2.conf ├── dev-ports.conf ├── docker-compose.tests.yaml ├── docker-compose.yaml ├── dockerfile ├── error_reporting.ini ├── test.env └── xdebug.ini ├── .docker ├── Dockerfile ├── config │ ├── custom.ini │ ├── nginx.conf │ ├── php-fpm.conf │ └── supervisord.conf ├── docker-compose.yml └── start.sh ├── .editorconfig ├── .eslintrc ├── .github ├── CODEOWNERS ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ └── feature_request.yml ├── PULL_REQUEST_TEMPLATE.md ├── changelogConfig.yml ├── release.yml └── workflows │ ├── acceptancetests.yml │ ├── codeStyleAnalysis.yml │ ├── makefile.yml │ ├── release.yml │ ├── staticAnalysis.yml │ ├── unittests.yml │ ├── update-latest-tag.yml │ └── version-bump.yml ├── .gitignore ├── .gitmodules ├── .htaccess ├── .idea ├── .gitignore ├── .name ├── GrepConsole.xml ├── blade.xml ├── codeception.xml ├── dataSources.xml ├── deployment.xml ├── encodings.xml ├── icon.svg ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── jsLinters │ └── jshint.xml ├── laravel-idea.xml ├── leantime-oss.iml ├── modules.xml ├── php-test-framework.xml ├── php.xml ├── phpspec.xml ├── phpunit.xml ├── sqldialects.xml ├── symfony2.xml ├── vcs.xml └── webServers.xml ├── .phive └── phars.xml ├── .phpactor.json ├── .phpdoc └── template │ ├── api-md │ ├── class.api-md.twig │ ├── config │ │ ├── footer.md.twig │ │ └── frontmatter.twig │ ├── endpoint.api-md.twig │ ├── include │ │ └── macros.twig │ ├── index.api-md.twig │ ├── method.api-md.twig │ └── template.xml │ └── md │ ├── class.md.twig │ ├── config │ ├── footer.md.twig │ └── frontmatter.twig │ ├── endpoint.md.twig │ ├── include │ └── macros.twig │ ├── index.md.twig │ ├── interface.md.twig │ ├── method.md.twig │ ├── template.xml │ └── trait.md.twig ├── .phpstan ├── Rules │ └── FacadeRule.php ├── bootstrap.php └── phpstan.neon ├── .pint └── pint.json ├── CHANGELOG.md ├── CLAUDE.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── app ├── Command │ ├── AbstractPluginCommand.php │ ├── AddUserCommand.php │ ├── BackupDbCommand.php │ ├── CheckEventListeners.php │ ├── CheckTranslations.php │ ├── CleanupOrphanedFilesCommand.php │ ├── ClearAll.php │ ├── ClearLanguage.php │ ├── DisablePluginCommand.php │ ├── EnablePluginCommand.php │ ├── InstallPluginCommand.php │ ├── ListPluginCommand.php │ ├── MigrateCommand.php │ ├── RemovePluginCommand.php │ ├── SaveSettingCommand.php │ ├── TestEmailCommand.php │ └── UpdateLeantime.php ├── Core │ ├── Application.php │ ├── Application │ │ └── AppServiceProvider.php │ ├── Auth │ │ ├── AuthenticationServiceProvider.php │ │ └── Tokens │ │ │ └── SanctumServiceProvider.php │ ├── Bootloader.php │ ├── Bootstrap │ │ ├── LoadConfig.php │ │ └── SetRequestForConsole.php │ ├── Cache │ │ ├── CacheServiceProvider.php │ │ └── Redis │ │ │ └── RedisServiceProvider.php │ ├── Configuration │ │ ├── AppSettings.php │ │ ├── Attributes │ │ │ └── LaravelConfig.php │ │ ├── DefaultConfig.php │ │ ├── Environment.php │ │ ├── EnvironmentServiceProvider.php │ │ ├── EnvironmentsEnum.php │ │ └── laravelConfig.php │ ├── Console │ │ ├── Application.php │ │ ├── CliRequest.php │ │ ├── CliServiceProvider.php │ │ ├── ConsoleKernel.php │ │ └── ConsoleSupportProvider.php │ ├── Controller │ │ ├── Composer.php │ │ ├── Controller.php │ │ ├── Frontcontroller.php │ │ └── HtmxController.php │ ├── Database │ │ ├── DatabaseManager.php │ │ └── DatabaseServiceProvider.php │ ├── Db │ │ ├── Db.php │ │ ├── DbColumn.php │ │ └── Repository.php │ ├── Domains │ │ ├── DTO.php │ │ ├── DomainModel.php │ │ ├── DomainRepository.php │ │ └── DomainService.php │ ├── Encryption │ │ └── EncryptionServiceProvider.php │ ├── Events │ │ ├── DispatchesEvents.php │ │ ├── EventDispatcher.php │ │ └── EventsServiceProvider.php │ ├── Exceptions │ │ ├── AuthException.php │ │ ├── ElementExistsException.php │ │ ├── ExceptionHandler.php │ │ ├── HandleExceptions.php │ │ ├── InvalidArgumentException.php │ │ ├── MissingParameterException.php │ │ ├── ReportableHandler.php │ │ └── WhoopsHandler.php │ ├── Files │ │ ├── Contracts │ │ │ └── FileManagerInterface.php │ │ ├── Exceptions │ │ │ └── FileValidationException.php │ │ ├── FileManager.php │ │ └── FileSystemServiceProvider.php │ ├── Http │ │ ├── ApiRequest.php │ │ ├── Client │ │ │ └── ApiClient.php │ │ ├── HtmxRequest.php │ │ ├── HttpKernel.php │ │ ├── IncomingRequest.php │ │ └── RequestTypes │ │ │ ├── ApiRequestType.php │ │ │ ├── HtmxRequestType.php │ │ │ ├── RequestTypeDetector.php │ │ │ └── RequestTypeInterface.php │ ├── Language.php │ ├── Mailer.php │ ├── Middleware │ │ ├── AuthCheck.php │ │ ├── AuthenticateSession.php │ │ ├── InitialHeaders.php │ │ ├── Installed.php │ │ ├── LoadPlugins.php │ │ ├── Localization.php │ │ ├── RateLimiter.php │ │ ├── RequestRateLimiter.php │ │ ├── SetCacheHeaders.php │ │ ├── StartSession.php │ │ ├── TrimStrings.php │ │ ├── TrustProxies.php │ │ └── Updated.php │ ├── Plugins │ │ ├── PluginManager.php │ │ ├── Plugins.php │ │ └── PluginsServiceProvider.php │ ├── Routing │ │ ├── FrontcontrollerServiceProvider.php │ │ └── RouteLoader.php │ ├── Sessions │ │ ├── PathManifestRepository.php │ │ └── SessionServiceProvider.php │ ├── Support │ │ ├── Avatarcreator.php │ │ ├── Build.php │ │ ├── CarbonMacros.php │ │ ├── Cast.php │ │ ├── DateTimeHelper.php │ │ ├── DateTimeInfoEnum.php │ │ ├── EditorTypeEnum.php │ │ ├── EntityRelationshipEnum.php │ │ ├── Format.php │ │ ├── FromFormat.php │ │ ├── LoadMacrosServiceProvider.php │ │ ├── Mix.php │ │ └── String │ │ │ ├── AlphaNumeric.php │ │ │ ├── BeautifyFilename.php │ │ │ ├── SanitizeFilename.php │ │ │ ├── SanitizeForLLM.php │ │ │ └── ToMarkdown.php │ ├── UI │ │ ├── Composer.php │ │ ├── Template.php │ │ ├── TemplateServiceProvider.php │ │ ├── Theme.php │ │ ├── ThemeServiceProvider.php │ │ └── ViewsServiceProvider.php │ └── i18n │ │ └── LanguageServiceProvider.php ├── Domain │ ├── Api │ │ ├── Contracts │ │ │ └── StaticAssetType.php │ │ ├── Controllers │ │ │ ├── ApiKey.php │ │ │ ├── Calendar.php │ │ │ ├── Canvas.php │ │ │ ├── Cpcanvas.php │ │ │ ├── Dbmcanvas.php │ │ │ ├── DelAPIKey.php │ │ │ ├── Eacanvas.php │ │ │ ├── Emcanvas.php │ │ │ ├── Files.php │ │ │ ├── Goalcanvas.php │ │ │ ├── I18n.php │ │ │ ├── Ideas.php │ │ │ ├── Ideation.php │ │ │ ├── Insightscanvas.php │ │ │ ├── Jsonrpc.php │ │ │ ├── Lbmcanvas.php │ │ │ ├── Leancanvas.php │ │ │ ├── NEWcanvas.php │ │ │ ├── NewApiKey.php │ │ │ ├── Notifications.php │ │ │ ├── Obmcanvas.php │ │ │ ├── Projects.php │ │ │ ├── Reactions.php │ │ │ ├── Retroscanvas.php │ │ │ ├── Riskscanvas.php │ │ │ ├── Sbcanvas.php │ │ │ ├── Sessions.php │ │ │ ├── Setting.php │ │ │ ├── Smcanvas.php │ │ │ ├── Sqcanvas.php │ │ │ ├── StaticAsset.php │ │ │ ├── Submenu.php │ │ │ ├── Swotcanvas.php │ │ │ ├── Tags.php │ │ │ ├── Tickets.php │ │ │ ├── Timer.php │ │ │ ├── Users.php │ │ │ └── Valuecanvas.php │ │ ├── Models │ │ │ └── StaticAsset.php │ │ ├── Repositories │ │ │ └── Api.php │ │ ├── Services │ │ │ └── Api.php │ │ └── Templates │ │ │ ├── apiKey.tpl.php │ │ │ ├── delKey.tpl.php │ │ │ └── newAPIKey.tpl.php │ ├── Audit │ │ └── Repositories │ │ │ └── Audit.php │ ├── Auth │ │ ├── Controllers │ │ │ ├── KeepAlive.php │ │ │ ├── Login.php │ │ │ ├── Logout.php │ │ │ ├── Redirect.php │ │ │ ├── ResetPw.php │ │ │ └── UserInvite.php │ │ ├── Guards │ │ │ ├── ApiGuard.php │ │ │ └── WebGuard.php │ │ ├── Js │ │ │ └── authController.js │ │ ├── Models │ │ │ ├── CurrentUser.php │ │ │ └── Roles.php │ │ ├── Repositories │ │ │ ├── AccessTokenRepository.php │ │ │ └── Auth.php │ │ ├── Services │ │ │ ├── AccessToken.php │ │ │ ├── Auth.php │ │ │ └── AuthUser.php │ │ ├── Templates │ │ │ ├── login.tpl.php │ │ │ ├── partials │ │ │ │ ├── loginInfo.blade.php │ │ │ │ └── onboardingProgress.blade.php │ │ │ ├── requestPwLink.tpl.php │ │ │ ├── resetPw.tpl.php │ │ │ ├── userInvite.blade.php │ │ │ ├── userInvite.tpl.php │ │ │ ├── userInvite2.blade.php │ │ │ ├── userInvite3.blade.php │ │ │ ├── userInvite4.blade.php │ │ │ └── userInvite5.blade.php │ │ └── register.php │ ├── Calendar │ │ ├── Controllers │ │ │ ├── AddEvent.php │ │ │ ├── DelEvent.php │ │ │ ├── DelExternalCalendar.php │ │ │ ├── EditEvent.php │ │ │ ├── EditExternal.php │ │ │ ├── Export.php │ │ │ ├── ExternalCal.php │ │ │ ├── Ical.php │ │ │ ├── ImportGCal.php │ │ │ ├── ShowAllGCals.php │ │ │ └── ShowMyCalendar.php │ │ ├── Js │ │ │ └── calendarController.js │ │ ├── Repositories │ │ │ └── Calendar.php │ │ ├── Services │ │ │ └── Calendar.php │ │ └── Templates │ │ │ ├── addEvent.tpl.php │ │ │ ├── delEvent.tpl.php │ │ │ ├── delExternalCal.tpl.php │ │ │ ├── editEvent.tpl.php │ │ │ ├── editExternalCalendar.blade.php │ │ │ ├── export.tpl.php │ │ │ ├── importGCal.blade.php │ │ │ ├── showAllGCals.tpl.php │ │ │ └── showMyCalendar.tpl.php │ ├── Canvas │ │ ├── Controllers │ │ │ ├── BoardDialog.php │ │ │ ├── DelCanvas.php │ │ │ ├── DelCanvasItem.php │ │ │ ├── EditCanvasComment.php │ │ │ ├── EditCanvasItem.php │ │ │ ├── Export.php │ │ │ └── ShowCanvas.php │ │ ├── Js │ │ │ └── canvasController.js │ │ ├── Repositories │ │ │ └── Canvas.php │ │ ├── Services │ │ │ └── Canvas.php │ │ └── Templates │ │ │ ├── boardDialog.php │ │ │ ├── canvasComment.inc.php │ │ │ ├── canvasDialog.inc.php │ │ │ ├── delCanvas.inc.php │ │ │ ├── delCanvasItem.inc.php │ │ │ ├── element.inc.php │ │ │ ├── helper.inc.php │ │ │ ├── modals.inc.php │ │ │ ├── showCanvasBottom.inc.php │ │ │ └── showCanvasTop.inc.php │ ├── Clients │ │ ├── Controllers │ │ │ ├── DelClient.php │ │ │ ├── EditClient.php │ │ │ ├── NewClient.php │ │ │ ├── RemoveUser.php │ │ │ ├── ShowAll.php │ │ │ └── ShowClient.php │ │ ├── Js │ │ │ └── clientsController.js │ │ ├── Repositories │ │ │ └── Clients.php │ │ ├── Services │ │ │ └── Clients.php │ │ └── Templates │ │ │ ├── delClient.tpl.php │ │ │ ├── editClient.tpl.php │ │ │ ├── newClient.tpl.php │ │ │ ├── showAll.tpl.php │ │ │ └── showClient.tpl.php │ ├── Comments │ │ ├── Controllers │ │ │ └── ShowAll.php │ │ ├── Js │ │ │ └── commentsController.js │ │ ├── Repositories │ │ │ └── Comments.php │ │ ├── Services │ │ │ └── Comments.php │ │ └── Templates │ │ │ ├── components │ │ │ ├── input.blade.php │ │ │ └── reply.blade.php │ │ │ ├── showAll.tpl.php │ │ │ └── submodules │ │ │ └── generalComment.sub.php │ ├── Connector │ │ ├── Controllers │ │ │ ├── Integration.php │ │ │ ├── Providers.php │ │ │ └── Show.php │ │ ├── Models │ │ │ ├── Entity.php │ │ │ ├── Field.php │ │ │ ├── FieldTypes.php │ │ │ ├── Integration.php │ │ │ └── Provider.php │ │ ├── Repositories │ │ │ ├── Integrations.php │ │ │ └── LeantimeEntities.php │ │ ├── Services │ │ │ ├── Connector.php │ │ │ ├── Integrations.php │ │ │ ├── ProviderIntegration.php │ │ │ └── Providers.php │ │ └── Templates │ │ │ ├── integrationConfirm.tpl.php │ │ │ ├── integrationEntity.tpl.php │ │ │ ├── integrationFields.tpl.php │ │ │ ├── integrationImport.tpl.php │ │ │ ├── integrations.tpl.php │ │ │ ├── newIntegration.tpl.php │ │ │ ├── providers.tpl.php │ │ │ ├── show.tpl.php │ │ │ ├── styles.css │ │ │ └── submodules │ │ │ └── importProgress.sub.php │ ├── Cpcanvas │ │ ├── Controllers │ │ │ ├── BoardDialog.php │ │ │ ├── DelCanvas.php │ │ │ ├── DelCanvasItem.php │ │ │ ├── EditCanvasComment.php │ │ │ ├── EditCanvasItem.php │ │ │ ├── Export.php │ │ │ └── ShowCanvas.php │ │ ├── Js │ │ │ └── cpCanvasController.js │ │ ├── Repositories │ │ │ └── Cpcanvas.php │ │ └── Templates │ │ │ ├── canvasComment.tpl.php │ │ │ ├── canvasDialog.tpl.php │ │ │ ├── delCanvas.tpl.php │ │ │ ├── delCanvasItem.tpl.php │ │ │ └── showCanvas.tpl.php │ ├── Cron │ │ ├── Controllers │ │ │ └── Run.php │ │ └── Services │ │ │ └── Cron.php │ ├── CsvImport │ │ ├── Controllers │ │ │ └── Upload.php │ │ ├── Listeners │ │ │ └── AddCSVImportProvider.php │ │ ├── Services │ │ │ └── CsvImport.php │ │ ├── Templates │ │ │ └── upload.tpl.php │ │ └── register.php │ ├── Dashboard │ │ ├── Controllers │ │ │ ├── Home.php │ │ │ └── Show.php │ │ ├── Js │ │ │ └── dashboardController.js │ │ ├── Repositories │ │ │ └── Dashboard.php │ │ └── Templates │ │ │ ├── home.blade.php │ │ │ ├── partials │ │ │ └── createEntityButton.blade.php │ │ │ └── show.blade.php │ ├── Dbmcanvas │ │ ├── Controllers │ │ │ ├── BoardDialog.php │ │ │ ├── DelCanvas.php │ │ │ ├── DelCanvasItem.php │ │ │ ├── EditCanvasComment.php │ │ │ ├── EditCanvasItem.php │ │ │ ├── Export.php │ │ │ └── ShowCanvas.php │ │ ├── Js │ │ │ └── dbmCanvasController.js │ │ ├── Repositories │ │ │ └── Dbmcanvas.php │ │ └── Templates │ │ │ ├── canvasComment.tpl.php │ │ │ ├── canvasDialog.tpl.php │ │ │ ├── delCanvas.tpl.php │ │ │ ├── delCanvasItem.tpl.php │ │ │ └── showCanvas.tpl.php │ ├── Eacanvas │ │ ├── Controllers │ │ │ ├── BoardDialog.php │ │ │ ├── DelCanvas.php │ │ │ ├── DelCanvasItem.php │ │ │ ├── EditCanvasComment.php │ │ │ ├── EditCanvasItem.php │ │ │ ├── Export.php │ │ │ └── ShowCanvas.php │ │ ├── Js │ │ │ └── eaCanvasController.js │ │ ├── Repositories │ │ │ └── Eacanvas.php │ │ └── Templates │ │ │ ├── canvasComment.tpl.php │ │ │ ├── canvasDialog.tpl.php │ │ │ ├── delCanvas.tpl.php │ │ │ ├── delCanvasItem.tpl.php │ │ │ └── showCanvas.tpl.php │ ├── Emcanvas │ │ ├── Controllers │ │ │ ├── BoardDialog.php │ │ │ ├── DelCanvas.php │ │ │ ├── DelCanvasItem.php │ │ │ ├── EditCanvasComment.php │ │ │ ├── EditCanvasItem.php │ │ │ ├── Export.php │ │ │ └── ShowCanvas.php │ │ ├── Js │ │ │ └── emCanvasController.js │ │ ├── Repositories │ │ │ └── Emcanvas.php │ │ └── Templates │ │ │ ├── canvasComment.tpl.php │ │ │ ├── canvasDialog.tpl.php │ │ │ ├── delCanvas.tpl.php │ │ │ ├── delCanvasItem.tpl.php │ │ │ └── showCanvas.tpl.php │ ├── Entityrelations │ │ ├── Repositories │ │ │ └── Entityrelations.php │ │ └── Services │ │ │ └── Entityrelations.php │ ├── Environment │ │ └── Commands │ │ │ └── SyncEnvironment.php │ ├── Errors │ │ ├── Controllers │ │ │ ├── Error403.php │ │ │ ├── Error404.php │ │ │ ├── Error500.php │ │ │ └── Error501.php │ │ └── Templates │ │ │ ├── error403.tpl.php │ │ │ ├── error404.tpl.php │ │ │ ├── error500.tpl.php │ │ │ └── error501.tpl.php │ ├── Files │ │ ├── Controllers │ │ │ ├── Browse.php │ │ │ ├── Get.php │ │ │ └── ShowAll.php │ │ ├── Events │ │ │ └── FileUploaded.php │ │ ├── Repositories │ │ │ └── Files.php │ │ ├── Services │ │ │ └── Files.php │ │ └── Templates │ │ │ ├── browse.tpl.php │ │ │ ├── showAll.tpl.php │ │ │ └── submodules │ │ │ └── showAll.sub.php │ ├── Gamecenter │ │ ├── Controllers │ │ │ └── Launch.php │ │ ├── Js │ │ │ └── game-snake.js │ │ └── Templates │ │ │ └── launchSnake.blade.php │ ├── Goalcanvas │ │ ├── Controllers │ │ │ ├── BigRock.php │ │ │ ├── Dashboard.php │ │ │ ├── DelCanvas.php │ │ │ ├── DelCanvasItem.php │ │ │ ├── EditCanvasComment.php │ │ │ ├── EditCanvasItem.php │ │ │ ├── Export.php │ │ │ └── ShowCanvas.php │ │ ├── Js │ │ │ └── goalCanvasController.js │ │ ├── Repositories │ │ │ └── Goalcanvas.php │ │ ├── Services │ │ │ └── Goalcanvas.php │ │ └── Templates │ │ │ ├── bigRockDialog.blade.php │ │ │ ├── canvasComment.blade.php │ │ │ ├── canvasDialog.blade.php │ │ │ ├── dashboard.blade.php │ │ │ ├── delCanvas.blade.php │ │ │ ├── delCanvasItem.blade.php │ │ │ ├── showBottomCanvas.blade.php │ │ │ └── showCanvas.blade.php │ ├── Help │ │ ├── Composers │ │ │ └── Helpermodal.php │ │ ├── Contracts │ │ │ └── OnboardingSteps.php │ │ ├── Controllers │ │ │ ├── FirstLogin.php │ │ │ ├── ShowOnboardingDialog.php │ │ │ ├── Support.php │ │ │ └── Updates.php │ │ ├── Hxcontrollers │ │ │ └── HelperModal.php │ │ ├── Js │ │ │ ├── confettiHelper.js │ │ │ ├── firstTaskController.js │ │ │ ├── helperController.js │ │ │ ├── helperRepository.js │ │ │ └── tourFactory.js │ │ ├── Services │ │ │ ├── FirstTaskStep.php │ │ │ ├── Helper.php │ │ │ ├── InviteTeamStep.php │ │ │ ├── ProjectDefinitionStep.php │ │ │ └── ProjectIntroStep.php │ │ ├── Templates │ │ │ ├── advancedBoards.tpl.php │ │ │ ├── backlog.tpl.php │ │ │ ├── blueprints.tpl.php │ │ │ ├── cpCanvas.tpl.php │ │ │ ├── dashboard.blade.php │ │ │ ├── dbmCanvas.tpl.php │ │ │ ├── eaCanvas.tpl.php │ │ │ ├── emCanvas.tpl.php │ │ │ ├── firstTaskStep.blade.php │ │ │ ├── fullLeanCanvas.tpl.php │ │ │ ├── goals.blade.php │ │ │ ├── helpermodal.blade.php │ │ │ ├── home.blade.php │ │ │ ├── ideaBoard.tpl.php │ │ │ ├── ideationBoard.tpl.php │ │ │ ├── insightsCanvas.tpl.php │ │ │ ├── inviteTeamStep.blade.php │ │ │ ├── kanban.blade.php │ │ │ ├── lbmCanvas.tpl.php │ │ │ ├── leanCanvas.tpl.php │ │ │ ├── minempathyCanvas.tpl.php │ │ │ ├── mytimesheets.tpl.php │ │ │ ├── newProject.tpl.php │ │ │ ├── notfound.tpl.php │ │ │ ├── obmCanvas.tpl.php │ │ │ ├── partials │ │ │ │ ├── gettingstarted.blade.php │ │ │ │ ├── inviteTeam.blade.php │ │ │ │ └── nameProject.blade.php │ │ │ ├── projectDashboard.blade.php │ │ │ ├── projectDefinitionStep.blade.php │ │ │ ├── projectIntroStep.blade.php │ │ │ ├── projectSuccess.tpl.php │ │ │ ├── retrosCanvas.tpl.php │ │ │ ├── risksCanvas.tpl.php │ │ │ ├── roadmap.blade.php │ │ │ ├── sbCanvas.tpl.php │ │ │ ├── showClients.tpl.php │ │ │ ├── showProjects.tpl.php │ │ │ ├── simpleLeanCanvas.tpl.php │ │ │ ├── smCanvas.tpl.php │ │ │ ├── sqCanvas.tpl.php │ │ │ ├── support.blade.php │ │ │ ├── swotCanvas.tpl.php │ │ │ └── wiki.tpl.php │ │ └── register.php │ ├── Ideas │ │ ├── Controllers │ │ │ ├── AdvancedBoards.php │ │ │ ├── BoardDialog.php │ │ │ ├── DelCanvas.php │ │ │ ├── DelCanvasItem.php │ │ │ ├── IdeaDialog.php │ │ │ └── ShowBoards.php │ │ ├── Js │ │ │ └── ideasController.js │ │ ├── Repositories │ │ │ └── Ideas.php │ │ ├── Services │ │ │ └── Ideas.php │ │ └── Templates │ │ │ ├── advancedBoards.tpl.php │ │ │ ├── boardDialog.php │ │ │ ├── delCanvas.tpl.php │ │ │ ├── delCanvasItem.tpl.php │ │ │ ├── ideaDialog.tpl.php │ │ │ └── showBoards.tpl.php │ ├── Insightscanvas │ │ ├── Controllers │ │ │ ├── BoardDialog.php │ │ │ ├── DelCanvas.php │ │ │ ├── DelCanvasItem.php │ │ │ ├── EditCanvasComment.php │ │ │ ├── EditCanvasItem.php │ │ │ ├── Export.php │ │ │ └── ShowCanvas.php │ │ ├── Js │ │ │ └── insightsCanvasController.js │ │ ├── Repositories │ │ │ └── Insightscanvas.php │ │ └── Templates │ │ │ ├── canvasComment.tpl.php │ │ │ ├── canvasDialog.tpl.php │ │ │ ├── delCanvas.tpl.php │ │ │ ├── delCanvasItem.tpl.php │ │ │ └── showCanvas.tpl.php │ ├── Install │ │ ├── Controllers │ │ │ ├── Index.php │ │ │ └── Update.php │ │ ├── Repositories │ │ │ └── Install.php │ │ ├── Services │ │ │ └── Install.php │ │ ├── Templates │ │ │ ├── new.tpl.php │ │ │ └── update.tpl.php │ │ └── register.php │ ├── Lbmcanvas │ │ ├── Controllers │ │ │ ├── BoardDialog.php │ │ │ ├── DelCanvas.php │ │ │ ├── DelCanvasItem.php │ │ │ ├── EditCanvasComment.php │ │ │ ├── EditCanvasItem.php │ │ │ ├── Export.php │ │ │ └── ShowCanvas.php │ │ ├── Js │ │ │ └── lbmCanvasController.js │ │ ├── Repositories │ │ │ └── Lbmcanvas.php │ │ └── Templates │ │ │ ├── canvasComment.tpl.php │ │ │ ├── canvasDialog.tpl.php │ │ │ ├── delCanvas.tpl.php │ │ │ ├── delCanvasItem.tpl.php │ │ │ └── showCanvas.tpl.php │ ├── Ldap │ │ └── Services │ │ │ └── Ldap.php │ ├── Leancanvas │ │ ├── Controllers │ │ │ ├── BoardDialog.php │ │ │ ├── DelCanvas.php │ │ │ ├── DelCanvasItem.php │ │ │ ├── EditCanvasComment.php │ │ │ ├── EditCanvasItem.php │ │ │ ├── Export.php │ │ │ └── ShowCanvas.php │ │ ├── Js │ │ │ └── leanCanvasController.js │ │ ├── Repositories │ │ │ └── Leancanvas.php │ │ └── Templates │ │ │ ├── canvasComment.tpl.php │ │ │ ├── canvasDialog.tpl.php │ │ │ ├── delCanvas.tpl.php │ │ │ ├── delCanvasItem.tpl.php │ │ │ └── showCanvas.tpl.php │ ├── Menu │ │ ├── Composers │ │ │ ├── HeadMenu.php │ │ │ ├── Menu.php │ │ │ └── ProjectSelector.php │ │ ├── Hxcontrollers │ │ │ └── ProjectSelector.php │ │ ├── Js │ │ │ ├── menuController.js │ │ │ └── menuRepository.js │ │ ├── Repositories │ │ │ └── Menu.php │ │ ├── Services │ │ │ └── Menu.php │ │ └── Templates │ │ │ ├── headMenu.blade.php │ │ │ ├── menu.blade.php │ │ │ ├── partials │ │ │ ├── clientGroup.blade.php │ │ │ ├── leftnav │ │ │ │ ├── fixed.blade.php │ │ │ │ ├── header.blade.php │ │ │ │ ├── item.blade.php │ │ │ │ ├── separator.blade.php │ │ │ │ └── submenu.blade.php │ │ │ ├── noGroup.blade.php │ │ │ ├── projectGroup.blade.php │ │ │ ├── projectLink.blade.php │ │ │ ├── projectListFilter.blade.php │ │ │ └── projectSelector.blade.php │ │ │ └── projectSelector.blade.php │ ├── Minempathycanvas │ │ ├── Controllers │ │ │ ├── BoardDialog.php │ │ │ ├── DelCanvas.php │ │ │ ├── DelCanvasItem.php │ │ │ ├── EditCanvasComment.php │ │ │ ├── EditCanvasItem.php │ │ │ ├── Export.php │ │ │ └── ShowCanvas.php │ │ ├── Js │ │ │ └── risksCanvasController.js │ │ ├── Repositories │ │ │ └── Minempathycanvas.php │ │ └── Templates │ │ │ ├── canvasComment.tpl.php │ │ │ ├── canvasDialog.tpl.php │ │ │ ├── delCanvas.tpl.php │ │ │ ├── delCanvasItem.tpl.php │ │ │ └── showCanvas.tpl.php │ ├── Modulemanager │ │ ├── Controllers │ │ │ └── Notavailable.php │ │ └── Services │ │ │ └── Modulemanager.php │ ├── Notifications │ │ ├── Controllers │ │ │ └── GetLatestGrowl.php │ │ ├── Hxcontrollers │ │ │ ├── News.php │ │ │ └── NewsBadge.php │ │ ├── Listeners │ │ │ └── NotifyProjectUsers.php │ │ ├── Models │ │ │ └── Notification.php │ │ ├── Repositories │ │ │ └── Notifications.php │ │ ├── Services │ │ │ ├── Messengers.php │ │ │ ├── News.php │ │ │ └── Notifications.php │ │ ├── Templates │ │ │ └── partials │ │ │ │ ├── latestNews.blade.php │ │ │ │ └── newsBadge.blade.php │ │ └── register.php │ ├── Obmcanvas │ │ ├── Controllers │ │ │ ├── BoardDialog.php │ │ │ ├── DelCanvas.php │ │ │ ├── DelCanvasItem.php │ │ │ ├── EditCanvasComment.php │ │ │ ├── EditCanvasItem.php │ │ │ ├── Export.php │ │ │ └── ShowCanvas.php │ │ ├── Js │ │ │ └── obmCanvasController.js │ │ ├── Repositories │ │ │ └── Obmcanvas.php │ │ └── Templates │ │ │ ├── canvasComment.tpl.php │ │ │ ├── canvasDialog.tpl.php │ │ │ ├── delCanvas.tpl.php │ │ │ ├── delCanvasItem.tpl.php │ │ │ └── showCanvas.tpl.php │ ├── Oidc │ │ ├── Controllers │ │ │ ├── Callback.php │ │ │ └── Login.php │ │ └── Services │ │ │ └── Oidc.php │ ├── Plugins │ │ ├── Contracts │ │ │ ├── PluginDisplayStrategy.php │ │ │ └── PluginInterface.php │ │ ├── Controllers │ │ │ ├── CssLoader.php │ │ │ ├── Details.php │ │ │ ├── Marketplace.php │ │ │ ├── Myapps.php │ │ │ └── Show.php │ │ ├── Hxcontrollers │ │ │ ├── Details.php │ │ │ └── Marketplaceplugins.php │ │ ├── Models │ │ │ ├── InstalledPlugin.php │ │ │ └── MarketplacePlugin.php │ │ ├── Repositories │ │ │ └── Plugins.php │ │ ├── Services │ │ │ ├── Plugins.php │ │ │ ├── Premium.php │ │ │ └── Registration.php │ │ ├── Templates │ │ │ ├── marketplace.blade.php │ │ │ ├── myapps.blade.php │ │ │ ├── partials │ │ │ │ ├── installed │ │ │ │ │ ├── plugincontrols.blade.php │ │ │ │ │ └── pluginmetadata.blade.php │ │ │ │ ├── latestPlugins.blade.php │ │ │ │ ├── marketplace │ │ │ │ │ └── plugincontrols.blade.php │ │ │ │ ├── plugin.blade.php │ │ │ │ ├── pluginlist.blade.php │ │ │ │ └── plugintabs.blade.php │ │ │ └── plugindetails.blade.php │ │ └── register.php │ ├── Projects │ │ ├── Controllers │ │ │ ├── ChangeCurrentProject.php │ │ │ ├── Createnew.php │ │ │ ├── DelProject.php │ │ │ ├── DuplicateProject.php │ │ │ ├── EditProject.php │ │ │ ├── NewProject.php │ │ │ ├── ShowAll.php │ │ │ ├── ShowMy.php │ │ │ └── ShowProject.php │ │ ├── Hxcontrollers │ │ │ ├── Checklist.php │ │ │ ├── ProjectCard.php │ │ │ ├── ProjectCardProgress.php │ │ │ └── ProjectHubProjects.php │ │ ├── Js │ │ │ └── projectsController.js │ │ ├── Middleware │ │ │ └── CurrentProject.php │ │ ├── Models │ │ │ └── Project.php │ │ ├── Repositories │ │ │ └── Projects.php │ │ ├── Services │ │ │ └── Projects.php │ │ └── Templates │ │ │ ├── createnew.blade.php │ │ │ ├── delProject.tpl.php │ │ │ ├── duplicateProject.tpl.php │ │ │ ├── editAccount.tpl.php │ │ │ ├── editProject.tpl.php │ │ │ ├── newProject.tpl.php │ │ │ ├── partials │ │ │ ├── checklist.blade.php │ │ │ ├── projectCard.blade.php │ │ │ ├── projectCardProgressBar.blade.php │ │ │ └── projectHubProjects.blade.php │ │ │ ├── projectHub.blade.php │ │ │ ├── showAll.tpl.php │ │ │ ├── showProject.tpl.php │ │ │ └── submodules │ │ │ ├── projectDetails.sub.php │ │ │ └── tickets.sub.php │ ├── Queue │ │ ├── Repositories │ │ │ └── Queue.php │ │ ├── Services │ │ │ └── Queue.php │ │ ├── Workers │ │ │ ├── DefaultWorker.php │ │ │ ├── EmailWorker.php │ │ │ ├── HttpRequestWorker.php │ │ │ └── Workers.php │ │ └── register.php │ ├── Reactions │ │ ├── Js │ │ │ └── reactionsController.js │ │ ├── Models │ │ │ └── Reactions.php │ │ ├── Repositories │ │ │ └── Reactions.php │ │ └── Services │ │ │ └── Reactions.php │ ├── Read │ │ └── Repositories │ │ │ └── Read.php │ ├── Reports │ │ ├── Controllers │ │ │ └── Show.php │ │ ├── Models │ │ │ └── Reports.php │ │ ├── Repositories │ │ │ └── Reports.php │ │ ├── Services │ │ │ └── Reports.php │ │ ├── Templates │ │ │ └── show.tpl.php │ │ └── register.php │ ├── Retroscanvas │ │ ├── Controllers │ │ │ ├── BoardDialog.php │ │ │ ├── DelCanvas.php │ │ │ ├── DelCanvasItem.php │ │ │ ├── EditCanvasComment.php │ │ │ ├── EditCanvasItem.php │ │ │ ├── Export.php │ │ │ └── ShowCanvas.php │ │ ├── Js │ │ │ └── retroCanvasController.js │ │ ├── Repositories │ │ │ └── Retroscanvas.php │ │ └── Templates │ │ │ ├── canvasComment.tpl.php │ │ │ ├── canvasDialog.tpl.php │ │ │ ├── delCanvas.tpl.php │ │ │ ├── delCanvasItem.tpl.php │ │ │ └── showCanvas.tpl.php │ ├── Riskscanvas │ │ ├── Controllers │ │ │ ├── BoardDialog.php │ │ │ ├── DelCanvas.php │ │ │ ├── DelCanvasItem.php │ │ │ ├── EditCanvasComment.php │ │ │ ├── EditCanvasItem.php │ │ │ ├── Export.php │ │ │ └── ShowCanvas.php │ │ ├── Js │ │ │ └── risksCanvasController.js │ │ ├── Repositories │ │ │ └── Riskscanvas.php │ │ └── Templates │ │ │ ├── canvasComment.tpl.php │ │ │ ├── canvasDialog.tpl.php │ │ │ ├── delCanvas.tpl.php │ │ │ ├── delCanvasItem.tpl.php │ │ │ └── showCanvas.tpl.php │ ├── Sbcanvas │ │ ├── Controllers │ │ │ ├── BoardDialog.php │ │ │ ├── DelCanvas.php │ │ │ ├── DelCanvasItem.php │ │ │ ├── EditCanvasComment.php │ │ │ ├── EditCanvasItem.php │ │ │ ├── Export.php │ │ │ └── ShowCanvas.php │ │ ├── Js │ │ │ └── sbCanvasController.js │ │ ├── Repositories │ │ │ └── Sbcanvas.php │ │ └── Templates │ │ │ ├── canvasComment.tpl.php │ │ │ ├── canvasDialog.tpl.php │ │ │ ├── delCanvas.tpl.php │ │ │ ├── delCanvasItem.tpl.php │ │ │ └── showCanvas.tpl.php │ ├── Setting │ │ ├── Controllers │ │ │ ├── EditBoxLabel.php │ │ │ └── EditCompanySettings.php │ │ ├── Js │ │ │ ├── settingController.js │ │ │ ├── settingRepository.js │ │ │ └── settingService.js │ │ ├── Repositories │ │ │ └── Setting.php │ │ ├── Services │ │ │ ├── Setting.php │ │ │ └── SettingCache.php │ │ └── Templates │ │ │ ├── editBoxDialog.tpl.php │ │ │ └── editCompanySettings.tpl.php │ ├── Smcanvas │ │ ├── Controllers │ │ │ ├── BoardDialog.php │ │ │ ├── DelCanvas.php │ │ │ ├── DelCanvasItem.php │ │ │ ├── EditCanvasComment.php │ │ │ ├── EditCanvasItem.php │ │ │ ├── Export.php │ │ │ └── ShowCanvas.php │ │ ├── Js │ │ │ └── smCanvasController.js │ │ ├── Repositories │ │ │ └── Smcanvas.php │ │ └── Templates │ │ │ ├── canvasComment.tpl.php │ │ │ ├── canvasDialog.tpl.php │ │ │ ├── delCanvas.tpl.php │ │ │ ├── delCanvasItem.tpl.php │ │ │ └── showCanvas.tpl.php │ ├── Sprints │ │ ├── Controllers │ │ │ ├── DelSprint.php │ │ │ └── EditSprint.php │ │ ├── Models │ │ │ └── Sprints.php │ │ ├── Repositories │ │ │ └── Sprints.php │ │ ├── Services │ │ │ └── Sprints.php │ │ └── Templates │ │ │ ├── delSprint.tpl.php │ │ │ └── sprintdialog.tpl.php │ ├── Sqcanvas │ │ ├── Controllers │ │ │ ├── BoardDialog.php │ │ │ ├── DelCanvas.php │ │ │ ├── DelCanvasItem.php │ │ │ ├── EditCanvasComment.php │ │ │ ├── EditCanvasItem.php │ │ │ ├── Export.php │ │ │ └── ShowCanvas.php │ │ ├── Js │ │ │ └── sqCanvasController.js │ │ ├── Repositories │ │ │ └── Sqcanvas.php │ │ └── Templates │ │ │ ├── canvasComment.tpl.php │ │ │ ├── canvasDialog.tpl.php │ │ │ ├── delCanvas.tpl.php │ │ │ ├── delCanvasItem.tpl.php │ │ │ └── showCanvas.tpl.php │ ├── Strategy │ │ ├── Controllers │ │ │ └── ShowBoards.php │ │ └── Templates │ │ │ └── showBoards.tpl.php │ ├── Swotcanvas │ │ ├── Controllers │ │ │ ├── BoardDialog.php │ │ │ ├── DelCanvas.php │ │ │ ├── DelCanvasItem.php │ │ │ ├── EditCanvasComment.php │ │ │ ├── EditCanvasItem.php │ │ │ ├── Export.php │ │ │ └── ShowCanvas.php │ │ ├── Js │ │ │ └── swotCanvasController.js │ │ ├── Repositories │ │ │ └── Swotcanvas.php │ │ └── Templates │ │ │ ├── canvasComment.tpl.php │ │ │ ├── canvasDialog.tpl.php │ │ │ ├── delCanvas.tpl.php │ │ │ ├── delCanvasItem.tpl.php │ │ │ └── showCanvas.tpl.php │ ├── Tags │ │ └── Services │ │ │ └── Tags.php │ ├── Tickets │ │ ├── Controllers │ │ │ ├── DelMilestone.php │ │ │ ├── DelTicket.php │ │ │ ├── EditMilestone.php │ │ │ ├── MoveTicket.php │ │ │ ├── NewTicket.php │ │ │ ├── Roadmap.php │ │ │ ├── RoadmapAll.php │ │ │ ├── ShowAll.php │ │ │ ├── ShowAllMilestones.php │ │ │ ├── ShowAllMilestonesOverview.php │ │ │ ├── ShowKanban.php │ │ │ ├── ShowList.php │ │ │ ├── ShowProjectCalendar.php │ │ │ └── ShowTicket.php │ │ ├── Htmx │ │ │ └── HtmxTicketEvents.php │ │ ├── Hxcontrollers │ │ │ ├── Milestones.php │ │ │ ├── Subtasks.php │ │ │ ├── TicketCard.php │ │ │ └── TimerButton.php │ │ ├── Js │ │ │ ├── ticketsController.js │ │ │ └── ticketsRepository.js │ │ ├── Models │ │ │ └── Tickets.php │ │ ├── Repositories │ │ │ ├── TicketHistory.php │ │ │ └── Tickets.php │ │ ├── Services │ │ │ └── Tickets.php │ │ └── Templates │ │ │ ├── calendar.tpl.php │ │ │ ├── delMilestone.tpl.php │ │ │ ├── delTicket.tpl.php │ │ │ ├── milestoneDialog.tpl.php │ │ │ ├── moveTicket.tpl.php │ │ │ ├── newTicket.tpl.php │ │ │ ├── newTicketModal.tpl.php │ │ │ ├── partials │ │ │ ├── milestoneCard.blade.php │ │ │ ├── subtasks.blade.php │ │ │ ├── ticketCard.blade.php │ │ │ ├── ticketsubmenu.blade.php │ │ │ ├── timerButton.blade.php │ │ │ └── timerLink.blade.php │ │ │ ├── roadmap.tpl.php │ │ │ ├── roadmapAll.tpl.php │ │ │ ├── showAll.tpl.php │ │ │ ├── showAllMilestones.tpl.php │ │ │ ├── showAllMilestonesOverview.tpl.php │ │ │ ├── showKanban.tpl.php │ │ │ ├── showList.tpl.php │ │ │ ├── showTicket.tpl.php │ │ │ ├── showTicketModal.blade.php │ │ │ └── submodules │ │ │ ├── additionalFields.sub.php │ │ │ ├── attachments.sub.php │ │ │ ├── comments.sub.php │ │ │ ├── portfolioHeader.sub.php │ │ │ ├── subTasks.sub.php │ │ │ ├── ticketBoardTabs.sub.php │ │ │ ├── ticketDetails.sub.php │ │ │ ├── ticketFilter.sub.php │ │ │ ├── ticketHeader.sub.php │ │ │ ├── ticketNewBtn.sub.php │ │ │ ├── ticketNewButton.sub.php │ │ │ ├── timelineHeader.sub.php │ │ │ ├── timelineTabs.sub.php │ │ │ └── timesheet.sub.php │ ├── Timesheets │ │ ├── Controllers │ │ │ ├── AddTime.php │ │ │ ├── DelTime.php │ │ │ ├── EditTime.php │ │ │ ├── ShowAll.php │ │ │ ├── ShowMy.php │ │ │ └── ShowMyList.php │ │ ├── Hxcontrollers │ │ │ └── Stopwatch.php │ │ ├── Js │ │ │ └── timesheetsController.js │ │ ├── Repositories │ │ │ └── Timesheets.php │ │ ├── Services │ │ │ └── Timesheets.php │ │ └── Templates │ │ │ ├── addTime.tpl.php │ │ │ ├── delTime.tpl.php │ │ │ ├── editTime.tpl.php │ │ │ ├── partials │ │ │ └── stopwatch.blade.php │ │ │ ├── showAll.tpl.php │ │ │ ├── showMy.tpl.php │ │ │ └── showMyList.tpl.php │ ├── TwoFA │ │ ├── Controllers │ │ │ ├── Edit.php │ │ │ └── Verify.php │ │ └── Templates │ │ │ ├── edit.tpl.php │ │ │ └── verify.tpl.php │ ├── Users │ │ ├── Controllers │ │ │ ├── DelUser.php │ │ │ ├── EditOwn.php │ │ │ ├── EditUser.php │ │ │ ├── Import.php │ │ │ ├── NewUser.php │ │ │ ├── PatchUserSettings.php │ │ │ └── ShowAll.php │ │ ├── Js │ │ │ ├── usersController.js │ │ │ ├── usersRepository.js │ │ │ └── usersService.js │ │ ├── Repositories │ │ │ └── Users.php │ │ ├── Services │ │ │ └── Users.php │ │ └── Templates │ │ │ ├── components │ │ │ ├── profile-box.blade.php │ │ │ └── profile-image.blade.php │ │ │ ├── delUser.tpl.php │ │ │ ├── editOwn.blade.php │ │ │ ├── editUser.tpl.php │ │ │ ├── importLdapDialog.tpl.php │ │ │ ├── newUser.tpl.php │ │ │ └── showAll.tpl.php │ ├── Valuecanvas │ │ ├── Controllers │ │ │ ├── BoardDialog.php │ │ │ ├── DelCanvas.php │ │ │ ├── DelCanvasItem.php │ │ │ ├── EditCanvasComment.php │ │ │ ├── EditCanvasItem.php │ │ │ ├── Export.php │ │ │ └── ShowCanvas.php │ │ ├── Js │ │ │ └── valueCanvasController.js │ │ ├── Repositories │ │ │ └── Valuecanvas.php │ │ └── Templates │ │ │ ├── canvasComment.tpl.php │ │ │ ├── canvasDialog.tpl.php │ │ │ ├── delCanvas.tpl.php │ │ │ ├── delCanvasItem.tpl.php │ │ │ └── showCanvas.tpl.php │ ├── Widgets │ │ ├── Controllers │ │ │ └── WidgetManager.php │ │ ├── Hxcontrollers │ │ │ ├── Calendar.php │ │ │ ├── MyProjects.php │ │ │ ├── MyToDos.php │ │ │ └── Welcome.php │ │ ├── Js │ │ │ └── Widgetcontroller.js │ │ ├── Models │ │ │ └── Widget.php │ │ ├── Services │ │ │ └── Widgets.php │ │ └── Templates │ │ │ ├── components │ │ │ └── moveableWidget.blade.php │ │ │ ├── partials │ │ │ ├── calendar.blade.php │ │ │ ├── myProjects.blade.php │ │ │ ├── myToDos.blade.php │ │ │ ├── myToDosLoadMore.blade.php │ │ │ ├── ticketsubmenu.blade.php │ │ │ ├── todoItem.blade.php │ │ │ └── welcome.blade.php │ │ │ └── widgetManager.blade.php │ └── Wiki │ │ ├── Controllers │ │ ├── ArticleDialog.php │ │ ├── DelArticle.php │ │ ├── DelWiki.php │ │ ├── Show.php │ │ ├── Templates.php │ │ └── WikiModal.php │ │ ├── Js │ │ └── wikiController.js │ │ ├── Models │ │ ├── Article.php │ │ ├── Template.php │ │ └── Wiki.php │ │ ├── Repositories │ │ └── Wiki.php │ │ ├── Services │ │ └── Wiki.php │ │ └── Templates │ │ ├── articleDialog.tpl.php │ │ ├── delArticle.tpl.php │ │ ├── delWiki.tpl.php │ │ ├── show.tpl.php │ │ ├── templates.tpl.php │ │ └── wikiDialog.tpl.php ├── Language │ ├── ar-SA.ini │ ├── cs-CZ.ini │ ├── da-DK.ini │ ├── de-CH.ini │ ├── de-DE-inf.ini │ ├── de-DE.ini │ ├── de-DE_informal.ini │ ├── el-GR.ini │ ├── en-GB.ini │ ├── en-PT.ini │ ├── en-UD.ini │ ├── en-US.ini │ ├── es-419.ini │ ├── es-ES.ini │ ├── es-MX.ini │ ├── et-EE.ini │ ├── fa-IR.ini │ ├── fr-CH.ini │ ├── fr-FR.ini │ ├── he-IL.ini │ ├── hr-HR.ini │ ├── hu-HU.ini │ ├── is-IS.ini │ ├── it-IT.ini │ ├── ja-JA.ini │ ├── ja-JP.ini │ ├── kaa.ini │ ├── km-KH.ini │ ├── ko-KR.ini │ ├── ks-IN.ini │ ├── languagelist.ini │ ├── lv-LV.ini │ ├── nl-NL.ini │ ├── no-NO.ini │ ├── pl-PL.ini │ ├── pt-BR.ini │ ├── pt-PT.ini │ ├── ro-RO.ini │ ├── ru-RU.ini │ ├── sk-SK.ini │ ├── sl-SI.ini │ ├── sr-SP.ini │ ├── sv-SE.ini │ ├── tr-TR.ini │ ├── uk-UA.ini │ ├── vi-VN.ini │ ├── zh-CN.ini │ └── zh-TW.ini ├── Views │ ├── Composers │ │ ├── App.php │ │ ├── Entry.php │ │ ├── Footer.php │ │ ├── Header.php │ │ └── PageBottom.php │ └── Templates │ │ ├── components │ │ ├── accordion.blade.php │ │ ├── badge.blade.php │ │ ├── button.blade.php │ │ ├── dropdownPill.blade.php │ │ ├── emojiinput.blade.php │ │ ├── inlineLinks.blade.php │ │ ├── inlineSelect.blade.php │ │ ├── loader.blade.php │ │ ├── loadingText.blade.php │ │ ├── pageheader.blade.php │ │ ├── selectable.blade.php │ │ ├── tabs.blade.php │ │ ├── tabs │ │ │ ├── content.blade.php │ │ │ └── heading.blade.php │ │ └── undrawSvg.blade.php │ │ ├── layouts │ │ ├── app.blade.php │ │ ├── blank.blade.php │ │ ├── entry.blade.php │ │ ├── error.blade.php │ │ └── registration.blade.php │ │ └── sections │ │ ├── appAnnouncement.blade.php │ │ ├── footer.blade.php │ │ ├── header.blade.php │ │ └── pageBottom.blade.php └── helpers.php ├── bin └── leantime ├── blocklist.json ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── classmap.json ├── codeception.yml ├── composer.json ├── composer.lock ├── config ├── configuration.sample.php └── sample.env ├── crowdin.yml ├── database └── .gitignore ├── generateBlocklist.mjs ├── helm ├── Chart.lock ├── Chart.yaml ├── README.md ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── deployment.yaml │ ├── hpa.yaml │ ├── ingress.yaml │ ├── pvc.yaml │ ├── service.yaml │ ├── serviceaccount.yaml │ └── tests │ │ └── test-connection.yaml └── values.yaml ├── index.php ├── makefile ├── nginx-subfolder.example.conf ├── nginx.example.conf ├── package.json ├── phpcs.xml ├── phpdoc-api.xml ├── phpdoc.xml ├── phpstan.neon ├── public ├── .htaccess ├── assets │ ├── audio │ │ ├── calm_alarm.wav │ │ ├── one_bell.mp3 │ │ ├── one_chime.mp3 │ │ ├── three_beeps.mp3 │ │ └── three_boops.mp3 │ ├── css │ │ ├── components │ │ │ ├── calendar.css │ │ │ ├── dropdowns.css │ │ │ ├── forms.css │ │ │ ├── gantt-overwrites.css │ │ │ ├── index.html │ │ │ ├── kanban.css │ │ │ ├── masonwall.css │ │ │ ├── mediamanager.css │ │ │ ├── mermaid.css │ │ │ ├── mobile.css │ │ │ ├── nav.css │ │ │ ├── nyroModal.css │ │ │ ├── overwrites.css │ │ │ ├── print.css │ │ │ ├── progressbars.css │ │ │ ├── reset.css │ │ │ ├── sortableList.css │ │ │ ├── structure.css │ │ │ ├── style.default.css │ │ │ ├── tables.css │ │ │ ├── text-styles.css │ │ │ ├── tourBoxes.css │ │ │ ├── tree-overwrites.css │ │ │ └── wysiwyg-overrides.css │ │ ├── index.html │ │ ├── jqueryUi │ │ │ ├── images │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png._tmp_upload │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ ├── ui-bg_inset-soft_95_fef1ec_1x100.png │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ ├── index.html │ │ │ ├── jquery-ui-1.7.2.custom.css │ │ │ └── mobil.jquery-ui-1.7.2.custom.css │ │ └── libs │ │ │ ├── animate.delay.css │ │ │ ├── animate.min.css │ │ │ ├── atkinson.css │ │ │ ├── bootstrap-fileupload.min.css │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-responsive.min.css │ │ │ ├── bootstrap-timepicker.min.css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.min.css │ │ │ ├── chosen-sprite-light.png │ │ │ ├── chosen-sprite-light@2x.png │ │ │ ├── croppie.css │ │ │ ├── emojione │ │ │ └── extras │ │ │ │ └── css │ │ │ │ ├── emojione-awesome.css │ │ │ │ ├── emojione-awesome.css.map │ │ │ │ ├── emojione.css │ │ │ │ └── emojione.min.css │ │ │ ├── fontawesome-free │ │ │ ├── LICENSE.txt │ │ │ ├── attribution.js │ │ │ ├── css │ │ │ │ ├── all.css │ │ │ │ ├── all.min.css │ │ │ │ ├── brands.css │ │ │ │ ├── brands.min.css │ │ │ │ ├── fontawesome.css │ │ │ │ ├── fontawesome.min.css │ │ │ │ ├── regular.css │ │ │ │ ├── regular.min.css │ │ │ │ ├── solid.css │ │ │ │ ├── solid.min.css │ │ │ │ ├── svg-with-js.css │ │ │ │ ├── svg-with-js.min.css │ │ │ │ ├── v4-font-face.css │ │ │ │ ├── v4-font-face.min.css │ │ │ │ ├── v4-shims.css │ │ │ │ ├── v4-shims.min.css │ │ │ │ ├── v5-font-face.css │ │ │ │ └── v5-font-face.min.css │ │ │ ├── js │ │ │ │ ├── all.js │ │ │ │ ├── all.min.js │ │ │ │ ├── brands.js │ │ │ │ ├── brands.min.js │ │ │ │ ├── conflict-detection.js │ │ │ │ ├── conflict-detection.min.js │ │ │ │ ├── fontawesome.js │ │ │ │ ├── fontawesome.min.js │ │ │ │ ├── regular.js │ │ │ │ ├── regular.min.js │ │ │ │ ├── solid.js │ │ │ │ ├── solid.min.js │ │ │ │ ├── v4-shims.js │ │ │ │ └── v4-shims.min.js │ │ │ ├── package.json │ │ │ └── webfonts │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ ├── fa-solid-900.woff2 │ │ │ │ ├── fa-v4compatibility.ttf │ │ │ │ └── fa-v4compatibility.woff2 │ │ │ ├── frappe_theme.css │ │ │ ├── fullcalendar.css │ │ │ ├── gridstack.min.css │ │ │ ├── iconpicker │ │ │ └── css │ │ │ │ ├── fontawesome-iconpicker.css │ │ │ │ └── fontawesome-iconpicker.min.css │ │ │ ├── img.png │ │ │ ├── index.html │ │ │ ├── isotope.css │ │ │ ├── jquery.alerts.css │ │ │ ├── jquery.chosen.css │ │ │ ├── jquery.growl.css │ │ │ ├── jquery.simple-color-picker.css │ │ │ ├── jquery.tagsinput.css │ │ │ ├── jquery.ui.css │ │ │ ├── jstree │ │ │ ├── 32px.png │ │ │ ├── 40px.png │ │ │ ├── style.css │ │ │ ├── style.min.css │ │ │ └── throbber.gif │ │ │ ├── loading-btn.css │ │ │ ├── loading.css │ │ │ ├── prism.css │ │ │ ├── roboto.css │ │ │ ├── shantell.css │ │ │ ├── shepherd-theme-arrows.css │ │ │ ├── slimselect.leantime.css │ │ │ ├── slimselect.min.css │ │ │ ├── switchery │ │ │ └── switchery.min.css │ │ │ ├── tinymceSkin │ │ │ └── oxide │ │ │ │ ├── content.css │ │ │ │ ├── content.inline.css │ │ │ │ ├── content.inline.min.css │ │ │ │ ├── content.min.css │ │ │ │ ├── content.mobile.css │ │ │ │ ├── content.mobile.min.css │ │ │ │ ├── fonts │ │ │ │ └── tinymce-mobile.woff │ │ │ │ ├── skin.css │ │ │ │ ├── skin.min.css │ │ │ │ ├── skin.mobile.css │ │ │ │ └── skin.mobile.min.css │ │ │ ├── tippy.js │ │ │ └── tippy.css │ │ │ ├── uppy.css │ │ │ └── uppy │ │ │ ├── dashboard.css │ │ │ ├── style.css │ │ │ └── style.min.css │ ├── fonts │ │ ├── atkinson │ │ │ ├── Atkinson-Hyperlegible-Bold-102.ttf │ │ │ ├── Atkinson-Hyperlegible-Bold-102a.woff2 │ │ │ ├── Atkinson-Hyperlegible-BoldItalic-102.ttf │ │ │ ├── Atkinson-Hyperlegible-BoldItalic-102a.woff2 │ │ │ ├── Atkinson-Hyperlegible-Font-License-2020-1104.pdf │ │ │ ├── Atkinson-Hyperlegible-Italic-102.ttf │ │ │ ├── Atkinson-Hyperlegible-Italic-102a.woff2 │ │ │ ├── Atkinson-Hyperlegible-Regular-102.ttf │ │ │ └── Atkinson-Hyperlegible-Regular-102a.woff2 │ │ ├── roboto │ │ │ ├── Google Android License.txt │ │ │ ├── LICENSE.txt │ │ │ ├── Roboto-Black.ttf │ │ │ ├── Roboto-Black.woff2 │ │ │ ├── Roboto-BlackItalic.ttf │ │ │ ├── Roboto-BlackItalic.woff2 │ │ │ ├── Roboto-Bold.ttf │ │ │ ├── Roboto-Bold.woff2 │ │ │ ├── Roboto-BoldItalic.ttf │ │ │ ├── Roboto-BoldItalic.woff2 │ │ │ ├── Roboto-Italic.ttf │ │ │ ├── Roboto-Italic.woff2 │ │ │ ├── Roboto-Light.ttf │ │ │ ├── Roboto-Light.woff2 │ │ │ ├── Roboto-LightItalic.ttf │ │ │ ├── Roboto-LightItalic.woff2 │ │ │ ├── Roboto-Medium.ttf │ │ │ ├── Roboto-Medium.woff2 │ │ │ ├── Roboto-MediumItalic.ttf │ │ │ ├── Roboto-MediumItalic.woff2 │ │ │ ├── Roboto-Regular.ttf │ │ │ ├── Roboto-Regular.woff2 │ │ │ ├── Roboto-Thin.ttf │ │ │ ├── Roboto-Thin.woff2 │ │ │ ├── Roboto-ThinItalic.ttf │ │ │ └── Roboto-ThinItalic.woff2 │ │ └── shantell │ │ │ ├── Shantell_Sans-Informal_Bold.woff2 │ │ │ ├── Shantell_Sans-Informal_Bold_Italic.woff2 │ │ │ ├── Shantell_Sans-Informal_Regular.woff2 │ │ │ └── Shantell_Sans-Informal_Regular_Italic.woff2 │ ├── images │ │ ├── 03-1.png │ │ ├── Screenshots │ │ │ ├── calendar.png │ │ │ ├── dark.png │ │ │ ├── docs.png │ │ │ ├── goals.png │ │ │ ├── kanban.png │ │ │ ├── mywork-v3.5.png │ │ │ ├── projectDashboard.png │ │ │ ├── table.png │ │ │ ├── timeline.png │ │ │ └── timesheet.png │ │ ├── apple-touch-icon.png │ │ ├── background-default.png │ │ ├── background-minimal.png │ │ ├── backgrounds │ │ │ ├── bg0.png │ │ │ ├── bg1.png │ │ │ ├── bg2.png │ │ │ ├── bg3.png │ │ │ ├── bg4.png │ │ │ ├── bg5.png │ │ │ ├── bg6.png │ │ │ └── bg7.png │ │ ├── calarrow.png │ │ ├── chosen-sprite.png │ │ ├── close.png │ │ ├── discord-logo.png │ │ ├── doc.png │ │ ├── favicon.png │ │ ├── gloria.png │ │ ├── icon-192.png │ │ ├── icon-512.png │ │ ├── index.html │ │ ├── intentionsGraphics.png │ │ ├── leoDino.png │ │ ├── leoHead.png │ │ ├── logo-powered-by-leantime.png │ │ ├── logo.png │ │ ├── logo.svg │ │ ├── logo_blue.png │ │ ├── logo_blue.svg │ │ ├── marcel.png │ │ ├── mattermost-logoHorizontal.png │ │ ├── openid-icon.png │ │ ├── spotlightBg.png │ │ ├── svg │ │ │ ├── apps-grid-icon.svg │ │ │ ├── csv-icon.svg │ │ │ ├── loading-animation.svg │ │ │ ├── undraw_Organizing_projects_0p9a.svg │ │ │ ├── undraw_a_moment_to_relax_bbpa.svg │ │ │ ├── undraw_adjustments_p22m.svg │ │ │ ├── undraw_adventure_map_hnin.svg │ │ │ ├── undraw_air_support_re_nybl.svg │ │ │ ├── undraw_attached_file_re_0n9b.svg │ │ │ ├── undraw_blooming_re_2kc4.svg │ │ │ ├── undraw_book_reading_re_fu2c.svg │ │ │ ├── undraw_business_decisions_re_84ag.svg │ │ │ ├── undraw_character_drawing_re_s2lj.svg │ │ │ ├── undraw_chat_bot_re_e2gj.svg │ │ │ ├── undraw_children_re_c37f.svg │ │ │ ├── undraw_complete_task_u2c3.svg │ │ │ ├── undraw_dark_mode_2xam.svg │ │ │ ├── undraw_design_data_khdb.svg │ │ │ ├── undraw_events_2p66.svg │ │ │ ├── undraw_events_re_98ue.svg │ │ │ ├── undraw_explore_re_8l4v.svg │ │ │ ├── undraw_fans_re_cri3.svg │ │ │ ├── undraw_football-with-dad_w7m1.svg │ │ │ ├── undraw_game_day_ucx9.svg │ │ │ ├── undraw_goals_re_lu76.svg │ │ │ ├── undraw_happy_music_g6wc.svg │ │ │ ├── undraw_happy_news_re_tsbd.svg │ │ │ ├── undraw_hello_ccwj.svg │ │ │ ├── undraw_image__folder_re_hgp7.svg │ │ │ ├── undraw_instant_support_re_s7un.svg │ │ │ ├── undraw_join_re_w1lh.svg │ │ │ ├── undraw_joyride_re_968t.svg │ │ │ ├── undraw_meditation_re_gll0.svg │ │ │ ├── undraw_mind_map_re_nlb6.svg │ │ │ ├── undraw_neighbors_ciwb.svg │ │ │ ├── undraw_new_ideas_jdea.svg │ │ │ ├── undraw_no_data_re_kwbl.svg │ │ │ ├── undraw_online_connection_6778.svg │ │ │ ├── undraw_online_party_re_7t6g.svg │ │ │ ├── undraw_party_re_nmwj.svg │ │ │ ├── undraw_partying_re_at7f.svg │ │ │ ├── undraw_photos_re_pvh3.svg │ │ │ ├── undraw_powerful_re_frhr.svg │ │ │ ├── undraw_progressive_app_m-9-ms.svg │ │ │ ├── undraw_real_time_collaboration_c62i.svg │ │ │ ├── undraw_schedule_pnbk.svg │ │ │ ├── undraw_schedule_re_2vro.svg │ │ │ ├── undraw_scrum-board_uqku.svg │ │ │ ├── undraw_scrum_board_cesn.svg │ │ │ ├── undraw_search_app_oso2.svg │ │ │ ├── undraw_security_on_re_e491.svg │ │ │ ├── undraw_setup_wizard_re_nday.svg │ │ │ ├── undraw_shared_goals_re_jvqd.svg │ │ │ ├── undraw_showing-support_ixfc.svg │ │ │ ├── undraw_smiley_face_re_9uid.svg │ │ │ ├── undraw_social_serenity_vhix.svg │ │ │ ├── undraw_solution_mindset_re_57bf.svg │ │ │ ├── undraw_spreadsheets_re_alt0.svg │ │ │ ├── undraw_taking_notes_re_bnaf.svg │ │ │ ├── undraw_task_31wc.svg │ │ │ ├── undraw_team_spirit_hrr4.svg │ │ │ ├── undraw_thought_process_re_om58.svg │ │ │ ├── undraw_time_management_30iu.svg │ │ │ ├── undraw_time_management_re_tk5w.svg │ │ │ ├── undraw_unexpected-friends_42mc.svg │ │ │ ├── undraw_welcome_re_h3d9.svg │ │ │ ├── undraw_welcoming_re_x0qo.svg │ │ │ └── undraw_wishes_icyp.svg │ │ ├── undraw_progressive_app_m9ms.png │ │ └── zulip-org-logo.png │ ├── js │ │ ├── app │ │ │ ├── app.js │ │ │ ├── controllers │ │ │ │ └── auth.js │ │ │ ├── core │ │ │ │ ├── dateHelper.js │ │ │ │ ├── datePickers.js │ │ │ │ ├── editors.js │ │ │ │ ├── modals.js │ │ │ │ ├── nestedSortable.js │ │ │ │ ├── snippets.js │ │ │ │ └── tableHandling.js │ │ │ ├── designtokens.js │ │ │ ├── htmx-extensions.js │ │ │ └── htmx.js │ │ ├── index.html │ │ └── libs │ │ │ ├── bootstrap-fileupload.min.js │ │ │ ├── bootstrap-timepicker.min.js │ │ │ ├── bootstrap.min.js │ │ │ ├── confetti │ │ │ ├── info.txt │ │ │ └── js │ │ │ │ └── confetti.js │ │ │ ├── emojipicker │ │ │ ├── LICENSE │ │ │ └── vanillaEmojiPicker.js │ │ │ ├── jquery.form.js │ │ │ ├── jquery.growl.js │ │ │ ├── jquery.nyroModal │ │ │ └── js │ │ │ │ └── jquery.nyroModal.custom.js │ │ │ ├── jquery.tagsinput.min.js │ │ │ ├── pomodoro │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── audio │ │ │ │ ├── one_bell.mp3 │ │ │ │ ├── one_chime.mp3 │ │ │ │ ├── three_beeps.mp3 │ │ │ │ └── three_boops.mp3 │ │ │ ├── images │ │ │ │ ├── green_tomato.ico │ │ │ │ └── red_tomato.ico │ │ │ ├── pomodoro.css │ │ │ ├── pomodoro.html │ │ │ └── pomodoro.js │ │ │ ├── prism │ │ │ ├── prism.css │ │ │ └── prism.js │ │ │ ├── simple-color-picker-master │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── TODO │ │ │ ├── example.html │ │ │ ├── jquery.simple-color-picker.js │ │ │ ├── spec-runner.html │ │ │ ├── spec │ │ │ │ └── simple-color-picker.spec.js │ │ │ └── vendor │ │ │ │ └── jasmine-2.0.0-rc5 │ │ │ │ ├── boot.js │ │ │ │ ├── console.js │ │ │ │ ├── jasmine-html.js │ │ │ │ ├── jasmine.css │ │ │ │ ├── jasmine.js │ │ │ │ └── jasmine_favicon.png │ │ │ ├── simpleGantt │ │ │ ├── frappe-gantt.js │ │ │ └── snap.svg-min.js │ │ │ ├── slimselect.js │ │ │ ├── slimselect.min.js │ │ │ ├── tinymce-plugins │ │ │ ├── advancedTemplate │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── aiTools │ │ │ │ └── plugin.js │ │ │ ├── bettertable │ │ │ │ └── index.js │ │ │ ├── budwriter │ │ │ │ └── plugin.js │ │ │ ├── checklist │ │ │ │ └── index.js │ │ │ ├── collapsibleheaders │ │ │ │ └── index.js │ │ │ ├── embed │ │ │ │ └── index.js │ │ │ ├── helper.js │ │ │ ├── mention │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── shortlink │ │ │ │ └── index.js │ │ │ ├── slashcommands │ │ │ │ └── slashcommands.js │ │ │ └── table │ │ │ │ ├── index.js │ │ │ │ └── plugin.js │ │ │ └── uppy │ │ │ └── uppy.js │ ├── less │ │ ├── app.less │ │ ├── editor.less │ │ └── main.less │ └── lottie │ │ └── leo │ │ ├── Dino.json │ │ ├── Loading_Clock_Animation.json │ │ ├── Lochnes.json │ │ ├── Mermaid.json │ │ ├── Narhwal.json │ │ ├── Peek_Unicorn.json │ │ ├── Rainbow_Unicorn.json │ │ ├── announcement.json │ │ ├── celebration-robot.json │ │ ├── exclamation.json │ │ ├── happy.json │ │ ├── heart.json │ │ ├── in-robo.json │ │ ├── king_arthur.json │ │ ├── motivational_speaker.json │ │ ├── peaking.json │ │ ├── pirate.json │ │ ├── robot-transform-loading.json │ │ ├── rolling_leo.json │ │ ├── sleep.json │ │ ├── smoking.json │ │ └── still.json ├── dist │ ├── .gitignore │ └── mix-manifest.json ├── favicon.ico ├── healthCheck.php ├── images │ ├── icon-192.png │ └── icon-512.png ├── index.php ├── mix-manifest.json ├── robots.txt ├── theme │ ├── default │ │ ├── css │ │ │ ├── dark.css │ │ │ ├── index.html │ │ │ └── light.css │ │ ├── index.html │ │ ├── layout │ │ │ ├── app.php │ │ │ └── entry.php │ │ └── theme.ini │ └── minimal │ │ ├── css │ │ ├── dark.css │ │ ├── index.html │ │ └── light.css │ │ ├── index.html │ │ ├── layout │ │ ├── app.php │ │ └── entry.php │ │ └── theme.ini ├── userfiles │ └── .gitignore └── web.config ├── storage ├── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tailwind.config.js ├── tests ├── Acceptance.suite.yml ├── Acceptance │ ├── API │ │ └── ApiCest.php │ ├── CreateUserCest.php │ ├── InstallCest.php │ ├── LoginCest.php │ ├── TicketsCest.php │ ├── TimesheetCest.php │ └── bootstrap.php ├── Httprequests │ ├── JsonRPC.http │ ├── MCP.http │ └── http-client.sample.env.json ├── Support │ ├── AcceptanceTester.php │ ├── ApiTester.php │ ├── Data │ │ └── .gitkeep │ ├── Helper │ │ ├── Acceptance.php │ │ ├── Api.php │ │ └── Unit.php │ ├── Page │ │ └── Acceptance │ │ │ ├── Install.php │ │ │ └── Login.php │ ├── UnitTester.php │ └── _generated │ │ └── .gitignore ├── Unit.suite.yml ├── Unit │ ├── .gitkeep │ ├── TestCase.php │ └── app │ │ ├── Core │ │ ├── ApiClientTest.php │ │ ├── ApplicationUrlTest.php │ │ ├── Events │ │ │ └── EventsTest.php │ │ ├── ExampleTest.php │ │ ├── Files │ │ │ └── FileManagerTest.php │ │ ├── Support │ │ │ ├── AvatarcreatorTest.php │ │ │ ├── CarbonMacrosTest.php │ │ │ ├── DateTimeHelperTest.php │ │ │ └── FormatTest.php │ │ └── UI │ │ │ └── ThemeTest.php │ │ └── Domain │ │ ├── Api │ │ └── Controllers │ │ │ └── JsonrpcTest.php │ │ ├── Calendar │ │ └── Services │ │ │ └── CalendarServiceTest.php │ │ ├── Menu │ │ └── Repositories │ │ │ └── MenuRepositoryTest.php │ │ └── Tickets │ │ └── Services │ │ └── TicketsServiceTest.php ├── _output │ └── .gitignore ├── bootstrap.php └── config │ └── app.php ├── types ├── _ide_carbon_mixin_instantiated.php └── _ide_carbon_mixin_static.php ├── userfiles └── .gitignore ├── web.config.sample └── webpack.mix.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.babelrc -------------------------------------------------------------------------------- /.dev/dev-apache-site.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.dev/dev-apache-site.conf -------------------------------------------------------------------------------- /.dev/dev-apache2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.dev/dev-apache2.conf -------------------------------------------------------------------------------- /.dev/dev-ports.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.dev/dev-ports.conf -------------------------------------------------------------------------------- /.dev/docker-compose.tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.dev/docker-compose.tests.yaml -------------------------------------------------------------------------------- /.dev/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.dev/docker-compose.yaml -------------------------------------------------------------------------------- /.dev/dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.dev/dockerfile -------------------------------------------------------------------------------- /.dev/error_reporting.ini: -------------------------------------------------------------------------------- 1 | error_reporting=E_ALL 2 | display_errors=On 3 | phar.readonly=Off 4 | -------------------------------------------------------------------------------- /.dev/test.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.dev/test.env -------------------------------------------------------------------------------- /.dev/xdebug.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.dev/xdebug.ini -------------------------------------------------------------------------------- /.docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.docker/Dockerfile -------------------------------------------------------------------------------- /.docker/config/custom.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.docker/config/custom.ini -------------------------------------------------------------------------------- /.docker/config/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.docker/config/nginx.conf -------------------------------------------------------------------------------- /.docker/config/php-fpm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.docker/config/php-fpm.conf -------------------------------------------------------------------------------- /.docker/config/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.docker/config/supervisord.conf -------------------------------------------------------------------------------- /.docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.docker/docker-compose.yml -------------------------------------------------------------------------------- /.docker/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.docker/start.sh -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/changelogConfig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.github/changelogConfig.yml -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/acceptancetests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.github/workflows/acceptancetests.yml -------------------------------------------------------------------------------- /.github/workflows/codeStyleAnalysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.github/workflows/codeStyleAnalysis.yml -------------------------------------------------------------------------------- /.github/workflows/makefile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.github/workflows/makefile.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/staticAnalysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.github/workflows/staticAnalysis.yml -------------------------------------------------------------------------------- /.github/workflows/unittests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.github/workflows/unittests.yml -------------------------------------------------------------------------------- /.github/workflows/update-latest-tag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.github/workflows/update-latest-tag.yml -------------------------------------------------------------------------------- /.github/workflows/version-bump.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.github/workflows/version-bump.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.gitmodules -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.htaccess -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | Leantime OSS -------------------------------------------------------------------------------- /.idea/GrepConsole.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.idea/GrepConsole.xml -------------------------------------------------------------------------------- /.idea/blade.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.idea/blade.xml -------------------------------------------------------------------------------- /.idea/codeception.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.idea/codeception.xml -------------------------------------------------------------------------------- /.idea/dataSources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.idea/dataSources.xml -------------------------------------------------------------------------------- /.idea/deployment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.idea/deployment.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.idea/icon.svg -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/jsLinters/jshint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.idea/jsLinters/jshint.xml -------------------------------------------------------------------------------- /.idea/laravel-idea.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.idea/laravel-idea.xml -------------------------------------------------------------------------------- /.idea/leantime-oss.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.idea/leantime-oss.iml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/php-test-framework.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.idea/php-test-framework.xml -------------------------------------------------------------------------------- /.idea/php.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.idea/php.xml -------------------------------------------------------------------------------- /.idea/phpspec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.idea/phpspec.xml -------------------------------------------------------------------------------- /.idea/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.idea/phpunit.xml -------------------------------------------------------------------------------- /.idea/sqldialects.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.idea/sqldialects.xml -------------------------------------------------------------------------------- /.idea/symfony2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.idea/symfony2.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/webServers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.idea/webServers.xml -------------------------------------------------------------------------------- /.phive/phars.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.phive/phars.xml -------------------------------------------------------------------------------- /.phpactor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.phpactor.json -------------------------------------------------------------------------------- /.phpdoc/template/api-md/class.api-md.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.phpdoc/template/api-md/class.api-md.twig -------------------------------------------------------------------------------- /.phpdoc/template/api-md/config/footer.md.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.phpdoc/template/api-md/config/footer.md.twig -------------------------------------------------------------------------------- /.phpdoc/template/api-md/endpoint.api-md.twig: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.phpdoc/template/api-md/include/macros.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.phpdoc/template/api-md/include/macros.twig -------------------------------------------------------------------------------- /.phpdoc/template/api-md/index.api-md.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.phpdoc/template/api-md/index.api-md.twig -------------------------------------------------------------------------------- /.phpdoc/template/api-md/method.api-md.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.phpdoc/template/api-md/method.api-md.twig -------------------------------------------------------------------------------- /.phpdoc/template/api-md/template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.phpdoc/template/api-md/template.xml -------------------------------------------------------------------------------- /.phpdoc/template/md/class.md.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.phpdoc/template/md/class.md.twig -------------------------------------------------------------------------------- /.phpdoc/template/md/config/footer.md.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.phpdoc/template/md/config/footer.md.twig -------------------------------------------------------------------------------- /.phpdoc/template/md/config/frontmatter.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.phpdoc/template/md/config/frontmatter.twig -------------------------------------------------------------------------------- /.phpdoc/template/md/endpoint.md.twig: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.phpdoc/template/md/include/macros.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.phpdoc/template/md/include/macros.twig -------------------------------------------------------------------------------- /.phpdoc/template/md/index.md.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.phpdoc/template/md/index.md.twig -------------------------------------------------------------------------------- /.phpdoc/template/md/interface.md.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.phpdoc/template/md/interface.md.twig -------------------------------------------------------------------------------- /.phpdoc/template/md/method.md.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.phpdoc/template/md/method.md.twig -------------------------------------------------------------------------------- /.phpdoc/template/md/template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.phpdoc/template/md/template.xml -------------------------------------------------------------------------------- /.phpdoc/template/md/trait.md.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.phpdoc/template/md/trait.md.twig -------------------------------------------------------------------------------- /.phpstan/Rules/FacadeRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.phpstan/Rules/FacadeRule.php -------------------------------------------------------------------------------- /.phpstan/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.phpstan/bootstrap.php -------------------------------------------------------------------------------- /.phpstan/phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.phpstan/phpstan.neon -------------------------------------------------------------------------------- /.pint/pint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/.pint/pint.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/SECURITY.md -------------------------------------------------------------------------------- /app/Command/AbstractPluginCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Command/AbstractPluginCommand.php -------------------------------------------------------------------------------- /app/Command/AddUserCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Command/AddUserCommand.php -------------------------------------------------------------------------------- /app/Command/BackupDbCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Command/BackupDbCommand.php -------------------------------------------------------------------------------- /app/Command/CheckEventListeners.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Command/CheckEventListeners.php -------------------------------------------------------------------------------- /app/Command/CheckTranslations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Command/CheckTranslations.php -------------------------------------------------------------------------------- /app/Command/CleanupOrphanedFilesCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Command/CleanupOrphanedFilesCommand.php -------------------------------------------------------------------------------- /app/Command/ClearAll.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Command/ClearAll.php -------------------------------------------------------------------------------- /app/Command/ClearLanguage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Command/ClearLanguage.php -------------------------------------------------------------------------------- /app/Command/DisablePluginCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Command/DisablePluginCommand.php -------------------------------------------------------------------------------- /app/Command/EnablePluginCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Command/EnablePluginCommand.php -------------------------------------------------------------------------------- /app/Command/InstallPluginCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Command/InstallPluginCommand.php -------------------------------------------------------------------------------- /app/Command/ListPluginCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Command/ListPluginCommand.php -------------------------------------------------------------------------------- /app/Command/MigrateCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Command/MigrateCommand.php -------------------------------------------------------------------------------- /app/Command/RemovePluginCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Command/RemovePluginCommand.php -------------------------------------------------------------------------------- /app/Command/SaveSettingCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Command/SaveSettingCommand.php -------------------------------------------------------------------------------- /app/Command/TestEmailCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Command/TestEmailCommand.php -------------------------------------------------------------------------------- /app/Command/UpdateLeantime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Command/UpdateLeantime.php -------------------------------------------------------------------------------- /app/Core/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Application.php -------------------------------------------------------------------------------- /app/Core/Application/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Application/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Core/Bootloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Bootloader.php -------------------------------------------------------------------------------- /app/Core/Bootstrap/LoadConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Bootstrap/LoadConfig.php -------------------------------------------------------------------------------- /app/Core/Bootstrap/SetRequestForConsole.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Bootstrap/SetRequestForConsole.php -------------------------------------------------------------------------------- /app/Core/Cache/CacheServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Cache/CacheServiceProvider.php -------------------------------------------------------------------------------- /app/Core/Cache/Redis/RedisServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Cache/Redis/RedisServiceProvider.php -------------------------------------------------------------------------------- /app/Core/Configuration/AppSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Configuration/AppSettings.php -------------------------------------------------------------------------------- /app/Core/Configuration/DefaultConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Configuration/DefaultConfig.php -------------------------------------------------------------------------------- /app/Core/Configuration/Environment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Configuration/Environment.php -------------------------------------------------------------------------------- /app/Core/Configuration/EnvironmentsEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Configuration/EnvironmentsEnum.php -------------------------------------------------------------------------------- /app/Core/Configuration/laravelConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Configuration/laravelConfig.php -------------------------------------------------------------------------------- /app/Core/Console/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Console/Application.php -------------------------------------------------------------------------------- /app/Core/Console/CliRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Console/CliRequest.php -------------------------------------------------------------------------------- /app/Core/Console/CliServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Console/CliServiceProvider.php -------------------------------------------------------------------------------- /app/Core/Console/ConsoleKernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Console/ConsoleKernel.php -------------------------------------------------------------------------------- /app/Core/Console/ConsoleSupportProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Console/ConsoleSupportProvider.php -------------------------------------------------------------------------------- /app/Core/Controller/Composer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Controller/Composer.php -------------------------------------------------------------------------------- /app/Core/Controller/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Controller/Controller.php -------------------------------------------------------------------------------- /app/Core/Controller/Frontcontroller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Controller/Frontcontroller.php -------------------------------------------------------------------------------- /app/Core/Controller/HtmxController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Controller/HtmxController.php -------------------------------------------------------------------------------- /app/Core/Database/DatabaseManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Database/DatabaseManager.php -------------------------------------------------------------------------------- /app/Core/Database/DatabaseServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Database/DatabaseServiceProvider.php -------------------------------------------------------------------------------- /app/Core/Db/Db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Db/Db.php -------------------------------------------------------------------------------- /app/Core/Db/DbColumn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Db/DbColumn.php -------------------------------------------------------------------------------- /app/Core/Db/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Db/Repository.php -------------------------------------------------------------------------------- /app/Core/Domains/DTO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Domains/DTO.php -------------------------------------------------------------------------------- /app/Core/Domains/DomainModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Domains/DomainModel.php -------------------------------------------------------------------------------- /app/Core/Domains/DomainRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Domains/DomainRepository.php -------------------------------------------------------------------------------- /app/Core/Domains/DomainService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Domains/DomainService.php -------------------------------------------------------------------------------- /app/Core/Events/DispatchesEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Events/DispatchesEvents.php -------------------------------------------------------------------------------- /app/Core/Events/EventDispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Events/EventDispatcher.php -------------------------------------------------------------------------------- /app/Core/Events/EventsServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Events/EventsServiceProvider.php -------------------------------------------------------------------------------- /app/Core/Exceptions/AuthException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Exceptions/AuthException.php -------------------------------------------------------------------------------- /app/Core/Exceptions/ExceptionHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Exceptions/ExceptionHandler.php -------------------------------------------------------------------------------- /app/Core/Exceptions/HandleExceptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Exceptions/HandleExceptions.php -------------------------------------------------------------------------------- /app/Core/Exceptions/ReportableHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Exceptions/ReportableHandler.php -------------------------------------------------------------------------------- /app/Core/Exceptions/WhoopsHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Exceptions/WhoopsHandler.php -------------------------------------------------------------------------------- /app/Core/Files/FileManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Files/FileManager.php -------------------------------------------------------------------------------- /app/Core/Files/FileSystemServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Files/FileSystemServiceProvider.php -------------------------------------------------------------------------------- /app/Core/Http/ApiRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Http/ApiRequest.php -------------------------------------------------------------------------------- /app/Core/Http/Client/ApiClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Http/Client/ApiClient.php -------------------------------------------------------------------------------- /app/Core/Http/HtmxRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Http/HtmxRequest.php -------------------------------------------------------------------------------- /app/Core/Http/HttpKernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Http/HttpKernel.php -------------------------------------------------------------------------------- /app/Core/Http/IncomingRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Http/IncomingRequest.php -------------------------------------------------------------------------------- /app/Core/Http/RequestTypes/ApiRequestType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Http/RequestTypes/ApiRequestType.php -------------------------------------------------------------------------------- /app/Core/Language.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Language.php -------------------------------------------------------------------------------- /app/Core/Mailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Mailer.php -------------------------------------------------------------------------------- /app/Core/Middleware/AuthCheck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Middleware/AuthCheck.php -------------------------------------------------------------------------------- /app/Core/Middleware/AuthenticateSession.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Middleware/AuthenticateSession.php -------------------------------------------------------------------------------- /app/Core/Middleware/InitialHeaders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Middleware/InitialHeaders.php -------------------------------------------------------------------------------- /app/Core/Middleware/Installed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Middleware/Installed.php -------------------------------------------------------------------------------- /app/Core/Middleware/LoadPlugins.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Middleware/LoadPlugins.php -------------------------------------------------------------------------------- /app/Core/Middleware/Localization.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Middleware/Localization.php -------------------------------------------------------------------------------- /app/Core/Middleware/RateLimiter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Middleware/RateLimiter.php -------------------------------------------------------------------------------- /app/Core/Middleware/RequestRateLimiter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Middleware/RequestRateLimiter.php -------------------------------------------------------------------------------- /app/Core/Middleware/SetCacheHeaders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Middleware/SetCacheHeaders.php -------------------------------------------------------------------------------- /app/Core/Middleware/StartSession.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Middleware/StartSession.php -------------------------------------------------------------------------------- /app/Core/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Core/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Core/Middleware/Updated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Middleware/Updated.php -------------------------------------------------------------------------------- /app/Core/Plugins/PluginManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Plugins/PluginManager.php -------------------------------------------------------------------------------- /app/Core/Plugins/Plugins.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Plugins/Plugins.php -------------------------------------------------------------------------------- /app/Core/Plugins/PluginsServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Plugins/PluginsServiceProvider.php -------------------------------------------------------------------------------- /app/Core/Routing/RouteLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Routing/RouteLoader.php -------------------------------------------------------------------------------- /app/Core/Sessions/PathManifestRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Sessions/PathManifestRepository.php -------------------------------------------------------------------------------- /app/Core/Sessions/SessionServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Sessions/SessionServiceProvider.php -------------------------------------------------------------------------------- /app/Core/Support/Avatarcreator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Support/Avatarcreator.php -------------------------------------------------------------------------------- /app/Core/Support/Build.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Support/Build.php -------------------------------------------------------------------------------- /app/Core/Support/CarbonMacros.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Support/CarbonMacros.php -------------------------------------------------------------------------------- /app/Core/Support/Cast.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Support/Cast.php -------------------------------------------------------------------------------- /app/Core/Support/DateTimeHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Support/DateTimeHelper.php -------------------------------------------------------------------------------- /app/Core/Support/DateTimeInfoEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Support/DateTimeInfoEnum.php -------------------------------------------------------------------------------- /app/Core/Support/EditorTypeEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Support/EditorTypeEnum.php -------------------------------------------------------------------------------- /app/Core/Support/EntityRelationshipEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Support/EntityRelationshipEnum.php -------------------------------------------------------------------------------- /app/Core/Support/Format.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Support/Format.php -------------------------------------------------------------------------------- /app/Core/Support/FromFormat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Support/FromFormat.php -------------------------------------------------------------------------------- /app/Core/Support/Mix.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Support/Mix.php -------------------------------------------------------------------------------- /app/Core/Support/String/AlphaNumeric.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Support/String/AlphaNumeric.php -------------------------------------------------------------------------------- /app/Core/Support/String/BeautifyFilename.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Support/String/BeautifyFilename.php -------------------------------------------------------------------------------- /app/Core/Support/String/SanitizeFilename.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Support/String/SanitizeFilename.php -------------------------------------------------------------------------------- /app/Core/Support/String/SanitizeForLLM.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Support/String/SanitizeForLLM.php -------------------------------------------------------------------------------- /app/Core/Support/String/ToMarkdown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/Support/String/ToMarkdown.php -------------------------------------------------------------------------------- /app/Core/UI/Composer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/UI/Composer.php -------------------------------------------------------------------------------- /app/Core/UI/Template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/UI/Template.php -------------------------------------------------------------------------------- /app/Core/UI/TemplateServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/UI/TemplateServiceProvider.php -------------------------------------------------------------------------------- /app/Core/UI/Theme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/UI/Theme.php -------------------------------------------------------------------------------- /app/Core/UI/ThemeServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/UI/ThemeServiceProvider.php -------------------------------------------------------------------------------- /app/Core/UI/ViewsServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/UI/ViewsServiceProvider.php -------------------------------------------------------------------------------- /app/Core/i18n/LanguageServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Core/i18n/LanguageServiceProvider.php -------------------------------------------------------------------------------- /app/Domain/Api/Contracts/StaticAssetType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Api/Contracts/StaticAssetType.php -------------------------------------------------------------------------------- /app/Domain/Api/Controllers/ApiKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Api/Controllers/ApiKey.php -------------------------------------------------------------------------------- /app/Domain/Api/Controllers/Calendar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Api/Controllers/Calendar.php -------------------------------------------------------------------------------- /app/Domain/Api/Controllers/Canvas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Api/Controllers/Canvas.php -------------------------------------------------------------------------------- /app/Domain/Api/Controllers/Cpcanvas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Api/Controllers/Cpcanvas.php -------------------------------------------------------------------------------- /app/Domain/Api/Controllers/Dbmcanvas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Api/Controllers/Dbmcanvas.php -------------------------------------------------------------------------------- /app/Domain/Api/Controllers/DelAPIKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Api/Controllers/DelAPIKey.php -------------------------------------------------------------------------------- /app/Domain/Api/Controllers/Eacanvas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Api/Controllers/Eacanvas.php -------------------------------------------------------------------------------- /app/Domain/Api/Controllers/Emcanvas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Api/Controllers/Emcanvas.php -------------------------------------------------------------------------------- /app/Domain/Api/Controllers/Files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Api/Controllers/Files.php -------------------------------------------------------------------------------- /app/Domain/Api/Controllers/Goalcanvas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Api/Controllers/Goalcanvas.php -------------------------------------------------------------------------------- /app/Domain/Api/Controllers/I18n.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Api/Controllers/I18n.php -------------------------------------------------------------------------------- /app/Domain/Api/Controllers/Ideas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Api/Controllers/Ideas.php -------------------------------------------------------------------------------- /app/Domain/Api/Controllers/Ideation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Api/Controllers/Ideation.php -------------------------------------------------------------------------------- /app/Domain/Api/Controllers/Insightscanvas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Api/Controllers/Insightscanvas.php -------------------------------------------------------------------------------- /app/Domain/Api/Controllers/Jsonrpc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Api/Controllers/Jsonrpc.php -------------------------------------------------------------------------------- /app/Domain/Api/Controllers/Lbmcanvas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Api/Controllers/Lbmcanvas.php -------------------------------------------------------------------------------- /app/Domain/Api/Controllers/Leancanvas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Api/Controllers/Leancanvas.php -------------------------------------------------------------------------------- /app/Domain/Api/Controllers/NEWcanvas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Api/Controllers/NEWcanvas.php -------------------------------------------------------------------------------- /app/Domain/Api/Controllers/NewApiKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Api/Controllers/NewApiKey.php -------------------------------------------------------------------------------- /app/Domain/Api/Controllers/Notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Api/Controllers/Notifications.php -------------------------------------------------------------------------------- /app/Domain/Api/Controllers/Obmcanvas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Api/Controllers/Obmcanvas.php -------------------------------------------------------------------------------- /app/Domain/Api/Controllers/Projects.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Api/Controllers/Projects.php -------------------------------------------------------------------------------- /app/Domain/Api/Controllers/Reactions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Api/Controllers/Reactions.php -------------------------------------------------------------------------------- /app/Domain/Api/Controllers/Retroscanvas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Api/Controllers/Retroscanvas.php -------------------------------------------------------------------------------- /app/Domain/Api/Controllers/Riskscanvas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Api/Controllers/Riskscanvas.php -------------------------------------------------------------------------------- /app/Domain/Api/Controllers/Sbcanvas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Api/Controllers/Sbcanvas.php -------------------------------------------------------------------------------- /app/Domain/Api/Controllers/Sessions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Api/Controllers/Sessions.php -------------------------------------------------------------------------------- /app/Domain/Api/Controllers/Setting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Api/Controllers/Setting.php -------------------------------------------------------------------------------- /app/Domain/Api/Controllers/Smcanvas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Api/Controllers/Smcanvas.php -------------------------------------------------------------------------------- /app/Domain/Api/Controllers/Sqcanvas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Api/Controllers/Sqcanvas.php -------------------------------------------------------------------------------- /app/Domain/Api/Controllers/StaticAsset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Api/Controllers/StaticAsset.php -------------------------------------------------------------------------------- /app/Domain/Api/Controllers/Submenu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Api/Controllers/Submenu.php -------------------------------------------------------------------------------- /app/Domain/Api/Controllers/Swotcanvas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Api/Controllers/Swotcanvas.php -------------------------------------------------------------------------------- /app/Domain/Api/Controllers/Tags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Api/Controllers/Tags.php -------------------------------------------------------------------------------- /app/Domain/Api/Controllers/Tickets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Api/Controllers/Tickets.php -------------------------------------------------------------------------------- /app/Domain/Api/Controllers/Timer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Api/Controllers/Timer.php -------------------------------------------------------------------------------- /app/Domain/Api/Controllers/Users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Api/Controllers/Users.php -------------------------------------------------------------------------------- /app/Domain/Api/Controllers/Valuecanvas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Api/Controllers/Valuecanvas.php -------------------------------------------------------------------------------- /app/Domain/Api/Models/StaticAsset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Api/Models/StaticAsset.php -------------------------------------------------------------------------------- /app/Domain/Api/Repositories/Api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Api/Repositories/Api.php -------------------------------------------------------------------------------- /app/Domain/Api/Services/Api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Api/Services/Api.php -------------------------------------------------------------------------------- /app/Domain/Api/Templates/apiKey.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Api/Templates/apiKey.tpl.php -------------------------------------------------------------------------------- /app/Domain/Api/Templates/delKey.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Api/Templates/delKey.tpl.php -------------------------------------------------------------------------------- /app/Domain/Api/Templates/newAPIKey.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Api/Templates/newAPIKey.tpl.php -------------------------------------------------------------------------------- /app/Domain/Audit/Repositories/Audit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Audit/Repositories/Audit.php -------------------------------------------------------------------------------- /app/Domain/Auth/Controllers/KeepAlive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Auth/Controllers/KeepAlive.php -------------------------------------------------------------------------------- /app/Domain/Auth/Controllers/Login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Auth/Controllers/Login.php -------------------------------------------------------------------------------- /app/Domain/Auth/Controllers/Logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Auth/Controllers/Logout.php -------------------------------------------------------------------------------- /app/Domain/Auth/Controllers/Redirect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Auth/Controllers/Redirect.php -------------------------------------------------------------------------------- /app/Domain/Auth/Controllers/ResetPw.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Auth/Controllers/ResetPw.php -------------------------------------------------------------------------------- /app/Domain/Auth/Controllers/UserInvite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Auth/Controllers/UserInvite.php -------------------------------------------------------------------------------- /app/Domain/Auth/Guards/ApiGuard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Auth/Guards/ApiGuard.php -------------------------------------------------------------------------------- /app/Domain/Auth/Guards/WebGuard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Auth/Guards/WebGuard.php -------------------------------------------------------------------------------- /app/Domain/Auth/Js/authController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Auth/Js/authController.js -------------------------------------------------------------------------------- /app/Domain/Auth/Models/CurrentUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Auth/Models/CurrentUser.php -------------------------------------------------------------------------------- /app/Domain/Auth/Models/Roles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Auth/Models/Roles.php -------------------------------------------------------------------------------- /app/Domain/Auth/Repositories/Auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Auth/Repositories/Auth.php -------------------------------------------------------------------------------- /app/Domain/Auth/Services/AccessToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Auth/Services/AccessToken.php -------------------------------------------------------------------------------- /app/Domain/Auth/Services/Auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Auth/Services/Auth.php -------------------------------------------------------------------------------- /app/Domain/Auth/Services/AuthUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Auth/Services/AuthUser.php -------------------------------------------------------------------------------- /app/Domain/Auth/Templates/login.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Auth/Templates/login.tpl.php -------------------------------------------------------------------------------- /app/Domain/Auth/Templates/resetPw.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Auth/Templates/resetPw.tpl.php -------------------------------------------------------------------------------- /app/Domain/Auth/Templates/userInvite.tpl.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Domain/Auth/register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Auth/register.php -------------------------------------------------------------------------------- /app/Domain/Calendar/Controllers/AddEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Calendar/Controllers/AddEvent.php -------------------------------------------------------------------------------- /app/Domain/Calendar/Controllers/DelEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Calendar/Controllers/DelEvent.php -------------------------------------------------------------------------------- /app/Domain/Calendar/Controllers/EditEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Calendar/Controllers/EditEvent.php -------------------------------------------------------------------------------- /app/Domain/Calendar/Controllers/Export.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Calendar/Controllers/Export.php -------------------------------------------------------------------------------- /app/Domain/Calendar/Controllers/Ical.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Calendar/Controllers/Ical.php -------------------------------------------------------------------------------- /app/Domain/Calendar/Js/calendarController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Calendar/Js/calendarController.js -------------------------------------------------------------------------------- /app/Domain/Calendar/Repositories/Calendar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Calendar/Repositories/Calendar.php -------------------------------------------------------------------------------- /app/Domain/Calendar/Services/Calendar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Calendar/Services/Calendar.php -------------------------------------------------------------------------------- /app/Domain/Calendar/Templates/export.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Calendar/Templates/export.tpl.php -------------------------------------------------------------------------------- /app/Domain/Canvas/Controllers/BoardDialog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Canvas/Controllers/BoardDialog.php -------------------------------------------------------------------------------- /app/Domain/Canvas/Controllers/DelCanvas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Canvas/Controllers/DelCanvas.php -------------------------------------------------------------------------------- /app/Domain/Canvas/Controllers/Export.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Canvas/Controllers/Export.php -------------------------------------------------------------------------------- /app/Domain/Canvas/Controllers/ShowCanvas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Canvas/Controllers/ShowCanvas.php -------------------------------------------------------------------------------- /app/Domain/Canvas/Js/canvasController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Canvas/Js/canvasController.js -------------------------------------------------------------------------------- /app/Domain/Canvas/Repositories/Canvas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Canvas/Repositories/Canvas.php -------------------------------------------------------------------------------- /app/Domain/Canvas/Services/Canvas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Canvas/Services/Canvas.php -------------------------------------------------------------------------------- /app/Domain/Canvas/Templates/boardDialog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Canvas/Templates/boardDialog.php -------------------------------------------------------------------------------- /app/Domain/Canvas/Templates/delCanvas.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Canvas/Templates/delCanvas.inc.php -------------------------------------------------------------------------------- /app/Domain/Canvas/Templates/element.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Canvas/Templates/element.inc.php -------------------------------------------------------------------------------- /app/Domain/Canvas/Templates/helper.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Canvas/Templates/helper.inc.php -------------------------------------------------------------------------------- /app/Domain/Canvas/Templates/modals.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Canvas/Templates/modals.inc.php -------------------------------------------------------------------------------- /app/Domain/Clients/Controllers/DelClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Clients/Controllers/DelClient.php -------------------------------------------------------------------------------- /app/Domain/Clients/Controllers/EditClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Clients/Controllers/EditClient.php -------------------------------------------------------------------------------- /app/Domain/Clients/Controllers/NewClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Clients/Controllers/NewClient.php -------------------------------------------------------------------------------- /app/Domain/Clients/Controllers/RemoveUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Clients/Controllers/RemoveUser.php -------------------------------------------------------------------------------- /app/Domain/Clients/Controllers/ShowAll.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Clients/Controllers/ShowAll.php -------------------------------------------------------------------------------- /app/Domain/Clients/Controllers/ShowClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Clients/Controllers/ShowClient.php -------------------------------------------------------------------------------- /app/Domain/Clients/Js/clientsController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Clients/Js/clientsController.js -------------------------------------------------------------------------------- /app/Domain/Clients/Repositories/Clients.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Clients/Repositories/Clients.php -------------------------------------------------------------------------------- /app/Domain/Clients/Services/Clients.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Clients/Services/Clients.php -------------------------------------------------------------------------------- /app/Domain/Clients/Templates/showAll.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Clients/Templates/showAll.tpl.php -------------------------------------------------------------------------------- /app/Domain/Comments/Controllers/ShowAll.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Comments/Controllers/ShowAll.php -------------------------------------------------------------------------------- /app/Domain/Comments/Js/commentsController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Comments/Js/commentsController.js -------------------------------------------------------------------------------- /app/Domain/Comments/Repositories/Comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Comments/Repositories/Comments.php -------------------------------------------------------------------------------- /app/Domain/Comments/Services/Comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Comments/Services/Comments.php -------------------------------------------------------------------------------- /app/Domain/Comments/Templates/showAll.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Comments/Templates/showAll.tpl.php -------------------------------------------------------------------------------- /app/Domain/Connector/Controllers/Show.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Connector/Controllers/Show.php -------------------------------------------------------------------------------- /app/Domain/Connector/Models/Entity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Connector/Models/Entity.php -------------------------------------------------------------------------------- /app/Domain/Connector/Models/Field.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Connector/Models/Field.php -------------------------------------------------------------------------------- /app/Domain/Connector/Models/FieldTypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Connector/Models/FieldTypes.php -------------------------------------------------------------------------------- /app/Domain/Connector/Models/Integration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Connector/Models/Integration.php -------------------------------------------------------------------------------- /app/Domain/Connector/Models/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Connector/Models/Provider.php -------------------------------------------------------------------------------- /app/Domain/Connector/Services/Connector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Connector/Services/Connector.php -------------------------------------------------------------------------------- /app/Domain/Connector/Services/Providers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Connector/Services/Providers.php -------------------------------------------------------------------------------- /app/Domain/Connector/Templates/show.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Connector/Templates/show.tpl.php -------------------------------------------------------------------------------- /app/Domain/Connector/Templates/styles.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Domain/Cpcanvas/Controllers/DelCanvas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Cpcanvas/Controllers/DelCanvas.php -------------------------------------------------------------------------------- /app/Domain/Cpcanvas/Controllers/Export.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Cpcanvas/Controllers/Export.php -------------------------------------------------------------------------------- /app/Domain/Cpcanvas/Js/cpCanvasController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Cpcanvas/Js/cpCanvasController.js -------------------------------------------------------------------------------- /app/Domain/Cpcanvas/Repositories/Cpcanvas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Cpcanvas/Repositories/Cpcanvas.php -------------------------------------------------------------------------------- /app/Domain/Cron/Controllers/Run.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Cron/Controllers/Run.php -------------------------------------------------------------------------------- /app/Domain/Cron/Services/Cron.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Cron/Services/Cron.php -------------------------------------------------------------------------------- /app/Domain/CsvImport/Controllers/Upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/CsvImport/Controllers/Upload.php -------------------------------------------------------------------------------- /app/Domain/CsvImport/Services/CsvImport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/CsvImport/Services/CsvImport.php -------------------------------------------------------------------------------- /app/Domain/CsvImport/Templates/upload.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/CsvImport/Templates/upload.tpl.php -------------------------------------------------------------------------------- /app/Domain/CsvImport/register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/CsvImport/register.php -------------------------------------------------------------------------------- /app/Domain/Dashboard/Controllers/Home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Dashboard/Controllers/Home.php -------------------------------------------------------------------------------- /app/Domain/Dashboard/Controllers/Show.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Dashboard/Controllers/Show.php -------------------------------------------------------------------------------- /app/Domain/Dashboard/Templates/home.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Dashboard/Templates/home.blade.php -------------------------------------------------------------------------------- /app/Domain/Dashboard/Templates/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Dashboard/Templates/show.blade.php -------------------------------------------------------------------------------- /app/Domain/Dbmcanvas/Controllers/Export.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Dbmcanvas/Controllers/Export.php -------------------------------------------------------------------------------- /app/Domain/Eacanvas/Controllers/DelCanvas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Eacanvas/Controllers/DelCanvas.php -------------------------------------------------------------------------------- /app/Domain/Eacanvas/Controllers/Export.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Eacanvas/Controllers/Export.php -------------------------------------------------------------------------------- /app/Domain/Eacanvas/Js/eaCanvasController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Eacanvas/Js/eaCanvasController.js -------------------------------------------------------------------------------- /app/Domain/Eacanvas/Repositories/Eacanvas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Eacanvas/Repositories/Eacanvas.php -------------------------------------------------------------------------------- /app/Domain/Emcanvas/Controllers/DelCanvas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Emcanvas/Controllers/DelCanvas.php -------------------------------------------------------------------------------- /app/Domain/Emcanvas/Controllers/Export.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Emcanvas/Controllers/Export.php -------------------------------------------------------------------------------- /app/Domain/Emcanvas/Js/emCanvasController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Emcanvas/Js/emCanvasController.js -------------------------------------------------------------------------------- /app/Domain/Emcanvas/Repositories/Emcanvas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Emcanvas/Repositories/Emcanvas.php -------------------------------------------------------------------------------- /app/Domain/Errors/Controllers/Error403.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Errors/Controllers/Error403.php -------------------------------------------------------------------------------- /app/Domain/Errors/Controllers/Error404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Errors/Controllers/Error404.php -------------------------------------------------------------------------------- /app/Domain/Errors/Controllers/Error500.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Errors/Controllers/Error500.php -------------------------------------------------------------------------------- /app/Domain/Errors/Controllers/Error501.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Errors/Controllers/Error501.php -------------------------------------------------------------------------------- /app/Domain/Errors/Templates/error403.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Errors/Templates/error403.tpl.php -------------------------------------------------------------------------------- /app/Domain/Errors/Templates/error404.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Errors/Templates/error404.tpl.php -------------------------------------------------------------------------------- /app/Domain/Errors/Templates/error500.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Errors/Templates/error500.tpl.php -------------------------------------------------------------------------------- /app/Domain/Errors/Templates/error501.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Errors/Templates/error501.tpl.php -------------------------------------------------------------------------------- /app/Domain/Files/Controllers/Browse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Files/Controllers/Browse.php -------------------------------------------------------------------------------- /app/Domain/Files/Controllers/Get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Files/Controllers/Get.php -------------------------------------------------------------------------------- /app/Domain/Files/Controllers/ShowAll.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Files/Controllers/ShowAll.php -------------------------------------------------------------------------------- /app/Domain/Files/Events/FileUploaded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Files/Events/FileUploaded.php -------------------------------------------------------------------------------- /app/Domain/Files/Repositories/Files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Files/Repositories/Files.php -------------------------------------------------------------------------------- /app/Domain/Files/Services/Files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Files/Services/Files.php -------------------------------------------------------------------------------- /app/Domain/Files/Templates/browse.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Files/Templates/browse.tpl.php -------------------------------------------------------------------------------- /app/Domain/Files/Templates/showAll.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Files/Templates/showAll.tpl.php -------------------------------------------------------------------------------- /app/Domain/Gamecenter/Controllers/Launch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Gamecenter/Controllers/Launch.php -------------------------------------------------------------------------------- /app/Domain/Gamecenter/Js/game-snake.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Gamecenter/Js/game-snake.js -------------------------------------------------------------------------------- /app/Domain/Goalcanvas/Controllers/BigRock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Goalcanvas/Controllers/BigRock.php -------------------------------------------------------------------------------- /app/Domain/Goalcanvas/Controllers/Export.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Goalcanvas/Controllers/Export.php -------------------------------------------------------------------------------- /app/Domain/Goalcanvas/Services/Goalcanvas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Goalcanvas/Services/Goalcanvas.php -------------------------------------------------------------------------------- /app/Domain/Help/Composers/Helpermodal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Help/Composers/Helpermodal.php -------------------------------------------------------------------------------- /app/Domain/Help/Contracts/OnboardingSteps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Help/Contracts/OnboardingSteps.php -------------------------------------------------------------------------------- /app/Domain/Help/Controllers/FirstLogin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Help/Controllers/FirstLogin.php -------------------------------------------------------------------------------- /app/Domain/Help/Controllers/Support.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Help/Controllers/Support.php -------------------------------------------------------------------------------- /app/Domain/Help/Controllers/Updates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Help/Controllers/Updates.php -------------------------------------------------------------------------------- /app/Domain/Help/Hxcontrollers/HelperModal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Help/Hxcontrollers/HelperModal.php -------------------------------------------------------------------------------- /app/Domain/Help/Js/confettiHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Help/Js/confettiHelper.js -------------------------------------------------------------------------------- /app/Domain/Help/Js/firstTaskController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Help/Js/firstTaskController.js -------------------------------------------------------------------------------- /app/Domain/Help/Js/helperController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Help/Js/helperController.js -------------------------------------------------------------------------------- /app/Domain/Help/Js/helperRepository.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Help/Js/helperRepository.js -------------------------------------------------------------------------------- /app/Domain/Help/Js/tourFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Help/Js/tourFactory.js -------------------------------------------------------------------------------- /app/Domain/Help/Services/FirstTaskStep.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Help/Services/FirstTaskStep.php -------------------------------------------------------------------------------- /app/Domain/Help/Services/Helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Help/Services/Helper.php -------------------------------------------------------------------------------- /app/Domain/Help/Services/InviteTeamStep.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Help/Services/InviteTeamStep.php -------------------------------------------------------------------------------- /app/Domain/Help/Services/ProjectIntroStep.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Help/Services/ProjectIntroStep.php -------------------------------------------------------------------------------- /app/Domain/Help/Templates/backlog.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Help/Templates/backlog.tpl.php -------------------------------------------------------------------------------- /app/Domain/Help/Templates/blueprints.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Help/Templates/blueprints.tpl.php -------------------------------------------------------------------------------- /app/Domain/Help/Templates/cpCanvas.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Help/Templates/cpCanvas.tpl.php -------------------------------------------------------------------------------- /app/Domain/Help/Templates/dashboard.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Help/Templates/dashboard.blade.php -------------------------------------------------------------------------------- /app/Domain/Help/Templates/dbmCanvas.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Help/Templates/dbmCanvas.tpl.php -------------------------------------------------------------------------------- /app/Domain/Help/Templates/eaCanvas.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Help/Templates/eaCanvas.tpl.php -------------------------------------------------------------------------------- /app/Domain/Help/Templates/emCanvas.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Help/Templates/emCanvas.tpl.php -------------------------------------------------------------------------------- /app/Domain/Help/Templates/goals.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Help/Templates/goals.blade.php -------------------------------------------------------------------------------- /app/Domain/Help/Templates/home.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Help/Templates/home.blade.php -------------------------------------------------------------------------------- /app/Domain/Help/Templates/ideaBoard.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Help/Templates/ideaBoard.tpl.php -------------------------------------------------------------------------------- /app/Domain/Help/Templates/kanban.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Help/Templates/kanban.blade.php -------------------------------------------------------------------------------- /app/Domain/Help/Templates/lbmCanvas.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Help/Templates/lbmCanvas.tpl.php -------------------------------------------------------------------------------- /app/Domain/Help/Templates/leanCanvas.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Help/Templates/leanCanvas.tpl.php -------------------------------------------------------------------------------- /app/Domain/Help/Templates/newProject.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Help/Templates/newProject.tpl.php -------------------------------------------------------------------------------- /app/Domain/Help/Templates/notfound.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Help/Templates/notfound.tpl.php -------------------------------------------------------------------------------- /app/Domain/Help/Templates/obmCanvas.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Help/Templates/obmCanvas.tpl.php -------------------------------------------------------------------------------- /app/Domain/Help/Templates/partials/inviteTeam.blade.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Domain/Help/Templates/partials/nameProject.blade.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Domain/Help/Templates/risksCanvas.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Help/Templates/risksCanvas.tpl.php -------------------------------------------------------------------------------- /app/Domain/Help/Templates/roadmap.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Help/Templates/roadmap.blade.php -------------------------------------------------------------------------------- /app/Domain/Help/Templates/sbCanvas.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Help/Templates/sbCanvas.tpl.php -------------------------------------------------------------------------------- /app/Domain/Help/Templates/showClients.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Help/Templates/showClients.tpl.php -------------------------------------------------------------------------------- /app/Domain/Help/Templates/smCanvas.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Help/Templates/smCanvas.tpl.php -------------------------------------------------------------------------------- /app/Domain/Help/Templates/sqCanvas.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Help/Templates/sqCanvas.tpl.php -------------------------------------------------------------------------------- /app/Domain/Help/Templates/support.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Help/Templates/support.blade.php -------------------------------------------------------------------------------- /app/Domain/Help/Templates/swotCanvas.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Help/Templates/swotCanvas.tpl.php -------------------------------------------------------------------------------- /app/Domain/Help/Templates/wiki.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Help/Templates/wiki.tpl.php -------------------------------------------------------------------------------- /app/Domain/Help/register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Help/register.php -------------------------------------------------------------------------------- /app/Domain/Ideas/Controllers/BoardDialog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Ideas/Controllers/BoardDialog.php -------------------------------------------------------------------------------- /app/Domain/Ideas/Controllers/DelCanvas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Ideas/Controllers/DelCanvas.php -------------------------------------------------------------------------------- /app/Domain/Ideas/Controllers/IdeaDialog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Ideas/Controllers/IdeaDialog.php -------------------------------------------------------------------------------- /app/Domain/Ideas/Controllers/ShowBoards.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Ideas/Controllers/ShowBoards.php -------------------------------------------------------------------------------- /app/Domain/Ideas/Js/ideasController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Ideas/Js/ideasController.js -------------------------------------------------------------------------------- /app/Domain/Ideas/Repositories/Ideas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Ideas/Repositories/Ideas.php -------------------------------------------------------------------------------- /app/Domain/Ideas/Services/Ideas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Ideas/Services/Ideas.php -------------------------------------------------------------------------------- /app/Domain/Ideas/Templates/boardDialog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Ideas/Templates/boardDialog.php -------------------------------------------------------------------------------- /app/Domain/Ideas/Templates/delCanvas.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Ideas/Templates/delCanvas.tpl.php -------------------------------------------------------------------------------- /app/Domain/Ideas/Templates/ideaDialog.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Ideas/Templates/ideaDialog.tpl.php -------------------------------------------------------------------------------- /app/Domain/Ideas/Templates/showBoards.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Ideas/Templates/showBoards.tpl.php -------------------------------------------------------------------------------- /app/Domain/Install/Controllers/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Install/Controllers/Index.php -------------------------------------------------------------------------------- /app/Domain/Install/Controllers/Update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Install/Controllers/Update.php -------------------------------------------------------------------------------- /app/Domain/Install/Repositories/Install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Install/Repositories/Install.php -------------------------------------------------------------------------------- /app/Domain/Install/Services/Install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Install/Services/Install.php -------------------------------------------------------------------------------- /app/Domain/Install/Templates/new.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Install/Templates/new.tpl.php -------------------------------------------------------------------------------- /app/Domain/Install/Templates/update.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Install/Templates/update.tpl.php -------------------------------------------------------------------------------- /app/Domain/Install/register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Install/register.php -------------------------------------------------------------------------------- /app/Domain/Lbmcanvas/Controllers/Export.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Lbmcanvas/Controllers/Export.php -------------------------------------------------------------------------------- /app/Domain/Ldap/Services/Ldap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Ldap/Services/Ldap.php -------------------------------------------------------------------------------- /app/Domain/Leancanvas/Controllers/Export.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Leancanvas/Controllers/Export.php -------------------------------------------------------------------------------- /app/Domain/Menu/Composers/HeadMenu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Menu/Composers/HeadMenu.php -------------------------------------------------------------------------------- /app/Domain/Menu/Composers/Menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Menu/Composers/Menu.php -------------------------------------------------------------------------------- /app/Domain/Menu/Composers/ProjectSelector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Menu/Composers/ProjectSelector.php -------------------------------------------------------------------------------- /app/Domain/Menu/Js/menuController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Menu/Js/menuController.js -------------------------------------------------------------------------------- /app/Domain/Menu/Js/menuRepository.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Menu/Js/menuRepository.js -------------------------------------------------------------------------------- /app/Domain/Menu/Repositories/Menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Menu/Repositories/Menu.php -------------------------------------------------------------------------------- /app/Domain/Menu/Services/Menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Menu/Services/Menu.php -------------------------------------------------------------------------------- /app/Domain/Menu/Templates/headMenu.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Menu/Templates/headMenu.blade.php -------------------------------------------------------------------------------- /app/Domain/Menu/Templates/menu.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Menu/Templates/menu.blade.php -------------------------------------------------------------------------------- /app/Domain/Menu/Templates/partials/leftnav/separator.blade.php: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /app/Domain/Notifications/Services/News.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Notifications/Services/News.php -------------------------------------------------------------------------------- /app/Domain/Notifications/register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Notifications/register.php -------------------------------------------------------------------------------- /app/Domain/Obmcanvas/Controllers/Export.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Obmcanvas/Controllers/Export.php -------------------------------------------------------------------------------- /app/Domain/Oidc/Controllers/Callback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Oidc/Controllers/Callback.php -------------------------------------------------------------------------------- /app/Domain/Oidc/Controllers/Login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Oidc/Controllers/Login.php -------------------------------------------------------------------------------- /app/Domain/Oidc/Services/Oidc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Oidc/Services/Oidc.php -------------------------------------------------------------------------------- /app/Domain/Plugins/Controllers/CssLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Plugins/Controllers/CssLoader.php -------------------------------------------------------------------------------- /app/Domain/Plugins/Controllers/Details.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Plugins/Controllers/Details.php -------------------------------------------------------------------------------- /app/Domain/Plugins/Controllers/Myapps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Plugins/Controllers/Myapps.php -------------------------------------------------------------------------------- /app/Domain/Plugins/Controllers/Show.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Domain/Plugins/Hxcontrollers/Details.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Plugins/Hxcontrollers/Details.php -------------------------------------------------------------------------------- /app/Domain/Plugins/Models/InstalledPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Plugins/Models/InstalledPlugin.php -------------------------------------------------------------------------------- /app/Domain/Plugins/Repositories/Plugins.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Plugins/Repositories/Plugins.php -------------------------------------------------------------------------------- /app/Domain/Plugins/Services/Plugins.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Plugins/Services/Plugins.php -------------------------------------------------------------------------------- /app/Domain/Plugins/Services/Registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Plugins/Services/Registration.php -------------------------------------------------------------------------------- /app/Domain/Plugins/Templates/myapps.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Plugins/Templates/myapps.blade.php -------------------------------------------------------------------------------- /app/Domain/Plugins/Templates/partials/installed/pluginmetadata.blade.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Domain/Plugins/register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Plugins/register.php -------------------------------------------------------------------------------- /app/Domain/Projects/Controllers/Createnew.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Projects/Controllers/Createnew.php -------------------------------------------------------------------------------- /app/Domain/Projects/Controllers/EditProject.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Domain/Projects/Controllers/ShowAll.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Projects/Controllers/ShowAll.php -------------------------------------------------------------------------------- /app/Domain/Projects/Controllers/ShowMy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Projects/Controllers/ShowMy.php -------------------------------------------------------------------------------- /app/Domain/Projects/Js/projectsController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Projects/Js/projectsController.js -------------------------------------------------------------------------------- /app/Domain/Projects/Models/Project.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Projects/Models/Project.php -------------------------------------------------------------------------------- /app/Domain/Projects/Repositories/Projects.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Projects/Repositories/Projects.php -------------------------------------------------------------------------------- /app/Domain/Projects/Services/Projects.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Projects/Services/Projects.php -------------------------------------------------------------------------------- /app/Domain/Projects/Templates/editAccount.tpl.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Domain/Projects/Templates/editProject.tpl.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Domain/Projects/Templates/showAll.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Projects/Templates/showAll.tpl.php -------------------------------------------------------------------------------- /app/Domain/Queue/Repositories/Queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Queue/Repositories/Queue.php -------------------------------------------------------------------------------- /app/Domain/Queue/Services/Queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Queue/Services/Queue.php -------------------------------------------------------------------------------- /app/Domain/Queue/Workers/DefaultWorker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Queue/Workers/DefaultWorker.php -------------------------------------------------------------------------------- /app/Domain/Queue/Workers/EmailWorker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Queue/Workers/EmailWorker.php -------------------------------------------------------------------------------- /app/Domain/Queue/Workers/Workers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Queue/Workers/Workers.php -------------------------------------------------------------------------------- /app/Domain/Queue/register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Queue/register.php -------------------------------------------------------------------------------- /app/Domain/Reactions/Models/Reactions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Reactions/Models/Reactions.php -------------------------------------------------------------------------------- /app/Domain/Reactions/Services/Reactions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Reactions/Services/Reactions.php -------------------------------------------------------------------------------- /app/Domain/Read/Repositories/Read.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Read/Repositories/Read.php -------------------------------------------------------------------------------- /app/Domain/Reports/Controllers/Show.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Reports/Controllers/Show.php -------------------------------------------------------------------------------- /app/Domain/Reports/Models/Reports.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Reports/Models/Reports.php -------------------------------------------------------------------------------- /app/Domain/Reports/Repositories/Reports.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Reports/Repositories/Reports.php -------------------------------------------------------------------------------- /app/Domain/Reports/Services/Reports.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Reports/Services/Reports.php -------------------------------------------------------------------------------- /app/Domain/Reports/Templates/show.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Reports/Templates/show.tpl.php -------------------------------------------------------------------------------- /app/Domain/Reports/register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Reports/register.php -------------------------------------------------------------------------------- /app/Domain/Riskscanvas/Controllers/Export.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Riskscanvas/Controllers/Export.php -------------------------------------------------------------------------------- /app/Domain/Sbcanvas/Controllers/DelCanvas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Sbcanvas/Controllers/DelCanvas.php -------------------------------------------------------------------------------- /app/Domain/Sbcanvas/Controllers/Export.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Sbcanvas/Controllers/Export.php -------------------------------------------------------------------------------- /app/Domain/Sbcanvas/Js/sbCanvasController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Sbcanvas/Js/sbCanvasController.js -------------------------------------------------------------------------------- /app/Domain/Sbcanvas/Repositories/Sbcanvas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Sbcanvas/Repositories/Sbcanvas.php -------------------------------------------------------------------------------- /app/Domain/Setting/Js/settingController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Setting/Js/settingController.js -------------------------------------------------------------------------------- /app/Domain/Setting/Js/settingRepository.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Setting/Js/settingRepository.js -------------------------------------------------------------------------------- /app/Domain/Setting/Js/settingService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Setting/Js/settingService.js -------------------------------------------------------------------------------- /app/Domain/Setting/Repositories/Setting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Setting/Repositories/Setting.php -------------------------------------------------------------------------------- /app/Domain/Setting/Services/Setting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Setting/Services/Setting.php -------------------------------------------------------------------------------- /app/Domain/Setting/Services/SettingCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Setting/Services/SettingCache.php -------------------------------------------------------------------------------- /app/Domain/Smcanvas/Controllers/DelCanvas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Smcanvas/Controllers/DelCanvas.php -------------------------------------------------------------------------------- /app/Domain/Smcanvas/Controllers/Export.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Smcanvas/Controllers/Export.php -------------------------------------------------------------------------------- /app/Domain/Smcanvas/Js/smCanvasController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Smcanvas/Js/smCanvasController.js -------------------------------------------------------------------------------- /app/Domain/Smcanvas/Repositories/Smcanvas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Smcanvas/Repositories/Smcanvas.php -------------------------------------------------------------------------------- /app/Domain/Sprints/Controllers/DelSprint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Sprints/Controllers/DelSprint.php -------------------------------------------------------------------------------- /app/Domain/Sprints/Controllers/EditSprint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Sprints/Controllers/EditSprint.php -------------------------------------------------------------------------------- /app/Domain/Sprints/Models/Sprints.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Sprints/Models/Sprints.php -------------------------------------------------------------------------------- /app/Domain/Sprints/Repositories/Sprints.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Sprints/Repositories/Sprints.php -------------------------------------------------------------------------------- /app/Domain/Sprints/Services/Sprints.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Sprints/Services/Sprints.php -------------------------------------------------------------------------------- /app/Domain/Sqcanvas/Controllers/DelCanvas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Sqcanvas/Controllers/DelCanvas.php -------------------------------------------------------------------------------- /app/Domain/Sqcanvas/Controllers/Export.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Sqcanvas/Controllers/Export.php -------------------------------------------------------------------------------- /app/Domain/Sqcanvas/Js/sqCanvasController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Sqcanvas/Js/sqCanvasController.js -------------------------------------------------------------------------------- /app/Domain/Sqcanvas/Repositories/Sqcanvas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Sqcanvas/Repositories/Sqcanvas.php -------------------------------------------------------------------------------- /app/Domain/Swotcanvas/Controllers/Export.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Swotcanvas/Controllers/Export.php -------------------------------------------------------------------------------- /app/Domain/Tags/Services/Tags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Tags/Services/Tags.php -------------------------------------------------------------------------------- /app/Domain/Tickets/Controllers/DelTicket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Tickets/Controllers/DelTicket.php -------------------------------------------------------------------------------- /app/Domain/Tickets/Controllers/MoveTicket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Tickets/Controllers/MoveTicket.php -------------------------------------------------------------------------------- /app/Domain/Tickets/Controllers/NewTicket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Tickets/Controllers/NewTicket.php -------------------------------------------------------------------------------- /app/Domain/Tickets/Controllers/Roadmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Tickets/Controllers/Roadmap.php -------------------------------------------------------------------------------- /app/Domain/Tickets/Controllers/RoadmapAll.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Tickets/Controllers/RoadmapAll.php -------------------------------------------------------------------------------- /app/Domain/Tickets/Controllers/ShowAll.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Tickets/Controllers/ShowAll.php -------------------------------------------------------------------------------- /app/Domain/Tickets/Controllers/ShowKanban.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Tickets/Controllers/ShowKanban.php -------------------------------------------------------------------------------- /app/Domain/Tickets/Controllers/ShowList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Tickets/Controllers/ShowList.php -------------------------------------------------------------------------------- /app/Domain/Tickets/Controllers/ShowTicket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Tickets/Controllers/ShowTicket.php -------------------------------------------------------------------------------- /app/Domain/Tickets/Htmx/HtmxTicketEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Tickets/Htmx/HtmxTicketEvents.php -------------------------------------------------------------------------------- /app/Domain/Tickets/Hxcontrollers/Subtasks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Tickets/Hxcontrollers/Subtasks.php -------------------------------------------------------------------------------- /app/Domain/Tickets/Js/ticketsController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Tickets/Js/ticketsController.js -------------------------------------------------------------------------------- /app/Domain/Tickets/Js/ticketsRepository.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Tickets/Js/ticketsRepository.js -------------------------------------------------------------------------------- /app/Domain/Tickets/Models/Tickets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Tickets/Models/Tickets.php -------------------------------------------------------------------------------- /app/Domain/Tickets/Repositories/Tickets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Tickets/Repositories/Tickets.php -------------------------------------------------------------------------------- /app/Domain/Tickets/Services/Tickets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Tickets/Services/Tickets.php -------------------------------------------------------------------------------- /app/Domain/Tickets/Templates/calendar.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Tickets/Templates/calendar.tpl.php -------------------------------------------------------------------------------- /app/Domain/Tickets/Templates/roadmap.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Tickets/Templates/roadmap.tpl.php -------------------------------------------------------------------------------- /app/Domain/Tickets/Templates/showAll.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Tickets/Templates/showAll.tpl.php -------------------------------------------------------------------------------- /app/Domain/Tickets/Templates/showList.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leantime/leantime/HEAD/app/Domain/Tickets/Templates/showList.tpl.php -------------------------------------------------------------------------------- /app/Domain/Tickets/Templates/submodules/comments.sub.php: -------------------------------------------------------------------------------- 1 |