Full Code of MbinOrg/mbin for AI

main f186284e7303 cached
2520 files
8.4 MB
2.3M tokens
8747 symbols
1 requests
Download .txt
Showing preview only (9,466K chars total). Download the full file or copy to clipboard to get everything.
Repository: MbinOrg/mbin
Branch: main
Commit: f186284e7303
Files: 2520
Total size: 8.4 MB

Directory structure:
gitextract_vqs4lfsd/

├── .devcontainer/
│   ├── apache-vhost.conf
│   ├── devcontainer.json
│   └── php_config.ini
├── .dockerignore
├── .editorconfig
├── .github/
│   ├── ISSUE_TEMPLATE/
│   │   ├── bug_report.md
│   │   └── feature_request.md
│   ├── PULL_REQUEST_TEMPLATE/
│   │   └── pull_request_template.md
│   ├── dependabot.yml
│   └── workflows/
│       ├── action.yaml
│       ├── build-and-publish-pipeline-image.yaml
│       ├── build-pipeline-image.yaml
│       ├── contrib.yaml
│       ├── psalm.yml
│       └── stale.yml
├── .gitignore
├── .php-cs-fixer.dist.php
├── C4.md
├── CONTRIBUTING.md
├── LICENSE
├── LICENSES/
│   └── Zlib.txt
├── README.md
├── UPGRADE.md
├── assets/
│   ├── app.js
│   ├── controllers/
│   │   ├── autogrow_controller.js
│   │   ├── clipboard_controller.js
│   │   ├── collapsable_controller.js
│   │   ├── comment_collapse_controller.js
│   │   ├── confirmation_controller.js
│   │   ├── entry_link_create_controller.js
│   │   ├── form_collection_controller.js
│   │   ├── html_refresh_controller.js
│   │   ├── image_upload_controller.js
│   │   ├── infinite_scroll_controller.js
│   │   ├── input_length_controller.js
│   │   ├── lightbox_controller.js
│   │   ├── markdown_toolbar_controller.js
│   │   ├── mbin_controller.js
│   │   ├── mentions_controller.js
│   │   ├── notifications_controller.js
│   │   ├── options_controller.js
│   │   ├── password_preview_controller.js
│   │   ├── post_controller.js
│   │   ├── preview_controller.js
│   │   ├── push_controller.js
│   │   ├── rich_textarea_controller.js
│   │   ├── scroll_top_controller.js
│   │   ├── selection_controller.js
│   │   ├── settings_row_enum_controller.js
│   │   ├── settings_row_switch_controller.js
│   │   ├── subject_controller.js
│   │   ├── subject_list_controller.js
│   │   ├── subs_controller.js
│   │   ├── subs_panel_controller.js
│   │   ├── thumb_controller.js
│   │   └── timeago_controller.js
│   ├── controllers.json
│   ├── email.js
│   ├── stimulus_bootstrap.js
│   ├── styles/
│   │   ├── _shared.scss
│   │   ├── _variables.scss
│   │   ├── app.scss
│   │   ├── components/
│   │   │   ├── _announcement.scss
│   │   │   ├── _comment.scss
│   │   │   ├── _domain.scss
│   │   │   ├── _dropdown.scss
│   │   │   ├── _emoji_picker.scss
│   │   │   ├── _entry.scss
│   │   │   ├── _figure_image.scss
│   │   │   ├── _figure_lightbox.scss
│   │   │   ├── _filter_list.scss
│   │   │   ├── _header.scss
│   │   │   ├── _infinite_scroll.scss
│   │   │   ├── _inline_md.scss
│   │   │   ├── _login.scss
│   │   │   ├── _magazine.scss
│   │   │   ├── _main.scss
│   │   │   ├── _media.scss
│   │   │   ├── _messages.scss
│   │   │   ├── _modlog.scss
│   │   │   ├── _monitoring.scss
│   │   │   ├── _notification_switch.scss
│   │   │   ├── _notifications.scss
│   │   │   ├── _pagination.scss
│   │   │   ├── _popover.scss
│   │   │   ├── _post.scss
│   │   │   ├── _preview.scss
│   │   │   ├── _search.scss
│   │   │   ├── _settings_row.scss
│   │   │   ├── _sidebar-subscriptions.scss
│   │   │   ├── _sidebar.scss
│   │   │   ├── _stats.scss
│   │   │   ├── _subject.scss
│   │   │   ├── _suggestions.scss
│   │   │   ├── _tag.scss
│   │   │   ├── _topbar.scss
│   │   │   ├── _user.scss
│   │   │   └── _vote.scss
│   │   ├── emails.scss
│   │   ├── layout/
│   │   │   ├── _alerts.scss
│   │   │   ├── _breakpoints.scss
│   │   │   ├── _forms.scss
│   │   │   ├── _icons.scss
│   │   │   ├── _images.scss
│   │   │   ├── _layout.scss
│   │   │   ├── _meta.scss
│   │   │   ├── _normalize.scss
│   │   │   ├── _options.scss
│   │   │   ├── _section.scss
│   │   │   ├── _tools.scss
│   │   │   └── _typo.scss
│   │   ├── mixins/
│   │   │   ├── animations.scss
│   │   │   ├── mbin.scss
│   │   │   ├── theme-dark.scss
│   │   │   ├── theme-light.scss
│   │   │   ├── theme-solarized-dark.scss
│   │   │   └── theme-solarized-light.scss
│   │   ├── pages/
│   │   │   ├── page_bookmarks.scss
│   │   │   ├── page_filter_lists.scss
│   │   │   ├── page_modlog.scss
│   │   │   ├── page_profile.scss
│   │   │   ├── post_front.scss
│   │   │   └── post_single.scss
│   │   └── themes/
│   │       ├── _default.scss
│   │       ├── _kbin.scss
│   │       ├── _solarized.scss
│   │       └── _tokyo-night.scss
│   └── utils/
│       ├── debounce.js
│       ├── event-source.js
│       ├── http.js
│       ├── mbin.js
│       ├── popover.js
│       └── routing.js
├── bin/
│   ├── console
│   ├── phpunit
│   └── post-upgrade
├── ci/
│   ├── Dockerfile
│   ├── ignoredPaths.txt
│   └── skipOnExcluded.sh
├── compose.dev.yaml
├── compose.yaml
├── composer.json
├── config/
│   ├── bundles.php
│   ├── mbin_routes/
│   │   ├── activity_pub.yaml
│   │   ├── admin.yaml
│   │   ├── admin_api.yaml
│   │   ├── ajax.yaml
│   │   ├── api.yaml
│   │   ├── bookmark.yaml
│   │   ├── bookmark_api.yaml
│   │   ├── combined_api.yaml
│   │   ├── custom_style.yaml
│   │   ├── domain.yaml
│   │   ├── domain_api.yaml
│   │   ├── entry.yaml
│   │   ├── entry_api.yaml
│   │   ├── front.yaml
│   │   ├── instance_api.yaml
│   │   ├── landing.yaml
│   │   ├── magazine.yaml
│   │   ├── magazine_api.yaml
│   │   ├── magazine_mod_request_api.yaml
│   │   ├── magazine_panel.yaml
│   │   ├── message.yaml
│   │   ├── message_api.yaml
│   │   ├── moderation_api.yaml
│   │   ├── modlog.yaml
│   │   ├── notification_api.yaml
│   │   ├── notification_settings.yaml
│   │   ├── notification_settings_api.yaml
│   │   ├── page.yaml
│   │   ├── people.yaml
│   │   ├── post.yaml
│   │   ├── post_api.yaml
│   │   ├── search.yaml
│   │   ├── search_api.yaml
│   │   ├── security.yaml
│   │   ├── tag.yaml
│   │   ├── user.yaml
│   │   └── user_api.yaml
│   ├── mbin_serialization/
│   │   ├── badge.yaml
│   │   ├── domain.yaml
│   │   ├── entry.yaml
│   │   ├── entry_comment.yaml
│   │   ├── image.yaml
│   │   ├── magazine.yaml
│   │   ├── post.yaml
│   │   ├── post_comment.yaml
│   │   └── user.yaml
│   ├── packages/
│   │   ├── antispam.yaml
│   │   ├── babdev_pagerfanta.yaml
│   │   ├── cache.yaml
│   │   ├── commonmark.yaml
│   │   ├── dama_doctrine_test_bundle.yaml
│   │   ├── debug.yaml
│   │   ├── dev/
│   │   │   └── rate_limiter.yaml
│   │   ├── doctrine.yaml
│   │   ├── doctrine_migrations.yaml
│   │   ├── fos_js_routing.yaml
│   │   ├── framework.yaml
│   │   ├── knpu_oauth2_client.yaml
│   │   ├── league_oauth2_server.yaml
│   │   ├── liip_imagine.yaml
│   │   ├── lock.yaml
│   │   ├── mailer.yaml
│   │   ├── mercure.yaml
│   │   ├── messenger.yaml
│   │   ├── meteo_concept_h_captcha.yaml
│   │   ├── monolog.yaml
│   │   ├── nelmio_api_doc.yaml
│   │   ├── nelmio_cors.yaml
│   │   ├── nyholm_psr7.yaml
│   │   ├── oneup_flysystem.yaml
│   │   ├── prod/
│   │   │   └── routing.yaml
│   │   ├── rate_limiter.yaml
│   │   ├── reset_password.yaml
│   │   ├── routing.yaml
│   │   ├── rss_atom.yaml
│   │   ├── scheb_2fa.yaml
│   │   ├── security.yaml
│   │   ├── test/
│   │   │   ├── framework.yaml
│   │   │   ├── messenger.yaml
│   │   │   ├── rate_limiter.yaml
│   │   │   └── twig.yaml
│   │   ├── translation.yaml
│   │   ├── twig.yaml
│   │   ├── twig_component.yaml
│   │   ├── uid.yaml
│   │   ├── validator.yaml
│   │   ├── web_profiler.yaml
│   │   ├── webpack_encore.yaml
│   │   └── workflow.yaml
│   ├── preload.php
│   ├── routes/
│   │   ├── dev/
│   │   │   └── framework.yaml
│   │   ├── fos_js_routing.yaml
│   │   ├── framework.yaml
│   │   ├── league_oauth2_server.yaml
│   │   ├── liip_imagine.yaml
│   │   ├── nelmio_api_doc.yaml
│   │   ├── rss_atom.yaml
│   │   ├── scheb_2fa.yaml
│   │   ├── security.yaml
│   │   ├── ux_autocomplete.yaml
│   │   └── web_profiler.yaml
│   ├── routes.yaml
│   └── services.yaml
├── docker/
│   ├── Caddyfile
│   ├── Dockerfile
│   ├── conf.d/
│   │   ├── 10-app.ini
│   │   ├── 20-app.dev.ini
│   │   └── 20-app.prod.ini
│   ├── docker-entrypoint.sh
│   ├── setup.sh
│   ├── tests/
│   │   └── compose.yaml
│   └── valkey.conf
├── docs/
│   ├── 01-user/
│   │   ├── 01-user_guide.md
│   │   ├── 02-FAQ.md
│   │   └── README.md
│   ├── 02-admin/
│   │   ├── 01-installation/
│   │   │   ├── 01-bare_metal.md
│   │   │   ├── 02-docker.md
│   │   │   └── README.md
│   │   ├── 02-configuration/
│   │   │   ├── 01-mbin_config_files.md
│   │   │   ├── 02-nginx.md
│   │   │   ├── 03-lets_encrypt.md
│   │   │   ├── 04-postgresql.md
│   │   │   ├── 05-redis.md
│   │   │   └── README.md
│   │   ├── 03-optional-features/
│   │   │   ├── 01-mercure.md
│   │   │   ├── 02-sso.md
│   │   │   ├── 03-captcha.md
│   │   │   ├── 04-user_application.md
│   │   │   ├── 05-image_metadata_cleaning.md
│   │   │   ├── 06-s3_storage.md
│   │   │   ├── 07-anubis.md
│   │   │   ├── 08-monitoring.md
│   │   │   ├── 09-image-compression.md
│   │   │   └── README.md
│   │   ├── 04-running-mbin/
│   │   │   ├── 01-first_setup.md
│   │   │   ├── 02-backup.md
│   │   │   ├── 03-upgrades.md
│   │   │   ├── 04-messenger.md
│   │   │   ├── 05-cli.md
│   │   │   └── README.md
│   │   ├── 05-troubleshooting/
│   │   │   ├── 01-bare_metal.md
│   │   │   ├── 02-docker.md
│   │   │   └── README.md
│   │   ├── FAQ.md
│   │   └── README.md
│   ├── 03-contributing/
│   │   ├── 01-getting_started.md
│   │   ├── 02-linting.md
│   │   ├── 03-project-overview.md
│   │   ├── 04-about-federation.md
│   │   └── README.md
│   ├── 04-app_developers/
│   │   └── README.md
│   ├── 05-fediverse_developers/
│   │   └── README.md
│   ├── README.md
│   └── postman/
│       ├── kbin.postman_collection.json
│       └── kbin.postman_environment.json
├── eslint.config.mjs
├── migrations/
│   ├── .gitignore
│   ├── Version20210527210529.php
│   ├── Version20210830133327.php
│   ├── Version20211016124104.php
│   ├── Version20211107140830.php
│   ├── Version20211113102713.php
│   ├── Version20211117170048.php
│   ├── Version20211121182824.php
│   ├── Version20211205133802.php
│   ├── Version20211220092653.php
│   ├── Version20211231174542.php
│   ├── Version20220116141404.php
│   ├── Version20220123173726.php
│   ├── Version20220125212007.php
│   ├── Version20220131190012.php
│   ├── Version20220204202829.php
│   ├── Version20220206143129.php
│   ├── Version20220208192443.php
│   ├── Version20220216211707.php
│   ├── Version20220218220935.php
│   ├── Version20220306181222.php
│   ├── Version20220308201003.php
│   ├── Version20220320191810.php
│   ├── Version20220404185534.php
│   ├── Version20220407171552.php
│   ├── Version20220408100230.php
│   ├── Version20220411203149.php
│   ├── Version20220421082111.php
│   ├── Version20220621144628.php
│   ├── Version20220705184724.php
│   ├── Version20220716120139.php
│   ├── Version20220716142146.php
│   ├── Version20220717101149.php
│   ├── Version20220723095813.php
│   ├── Version20220723182602.php
│   ├── Version20220801085018.php
│   ├── Version20220808150935.php
│   ├── Version20220903070858.php
│   ├── Version20220911120737.php
│   ├── Version20220917102655.php
│   ├── Version20220918140533.php
│   ├── Version20220924182955.php
│   ├── Version20221015120344.php
│   ├── Version20221030095047.php
│   ├── Version20221108164813.php
│   ├── Version20221109161753.php
│   ├── Version20221116150037.php
│   ├── Version20221121125723.php
│   ├── Version20221124162526.php
│   ├── Version20221128212959.php
│   ├── Version20221202114605.php
│   ├── Version20221202134944.php
│   ├── Version20221202140020.php
│   ├── Version20221214153611.php
│   ├── Version20221222124812.php
│   ├── Version20221229160511.php
│   ├── Version20221229162448.php
│   ├── Version20230125123959.php
│   ├── Version20230306134010.php
│   ├── Version20230314134010.php
│   ├── Version20230323160934.php
│   ├── Version20230323170745.php
│   ├── Version20230325084833.php
│   ├── Version20230325101955.php
│   ├── Version20230404080956.php
│   ├── Version20230411133416.php
│   ├── Version20230411143354.php
│   ├── Version20230412211534.php
│   ├── Version20230425103236.php
│   ├── Version20230428130129.php
│   ├── Version20230429053840.php
│   ├── Version20230429143017.php
│   ├── Version20230504124307.php
│   ├── Version20230514143119.php
│   ├── Version20230521145244.php
│   ├── Version20230522135602.php
│   ├── Version20230525203803.php
│   ├── Version20230615085154.php
│   ├── Version20230615091124.php
│   ├── Version20230615203020.php
│   ├── Version20230701125418.php
│   ├── Version20230712132025.php
│   ├── Version20230715034515.php
│   ├── Version20230718160422.php
│   ├── Version20230719060447.php
│   ├── Version20230729063543.php
│   ├── Version20230812151754.php
│   ├── Version20230820234418.php
│   ├── Version20230902082312.php
│   ├── Version20230906095436.php
│   ├── Version20231019023030.php
│   ├── Version20231019190634.php
│   ├── Version20231103004800.php
│   ├── Version20231103070928.php
│   ├── Version20231107204142.php
│   ├── Version20231108084451.php
│   ├── Version20231112133420.php
│   ├── Version20231113165549.php
│   ├── Version20231119012320.php
│   ├── Version20231120164429.php
│   ├── Version20231121010453.php
│   ├── Version20231130203400.php
│   ├── Version20240113214751.php
│   ├── Version20240216110804.php
│   ├── Version20240217103834.php
│   ├── Version20240217141231.php
│   ├── Version20240313222328.php
│   ├── Version20240315124130.php
│   ├── Version20240317163312.php
│   ├── Version20240330101300.php
│   ├── Version20240402190028.php
│   ├── Version20240405131611.php
│   ├── Version20240405134821.php
│   ├── Version20240409072525.php
│   ├── Version20240412010024.php
│   ├── Version20240503224350.php
│   ├── Version20240515122858.php
│   ├── Version20240528172429.php
│   ├── Version20240529115400.php
│   ├── Version20240603190838.php
│   ├── Version20240603230734.php
│   ├── Version20240612234046.php
│   ├── Version20240614120443.php
│   ├── Version20240615225744.php
│   ├── Version20240625162714.php
│   ├── Version20240628142700.php
│   ├── Version20240628145441.php
│   ├── Version20240701113000.php
│   ├── Version20240706005744.php
│   ├── Version20240715181419.php
│   ├── Version20240718232800.php
│   ├── Version20240729174207.php
│   ├── Version20240815162107.php
│   ├── Version20240820201944.php
│   ├── Version20240831151328.php
│   ├── Version20240923164233.php
│   ├── Version20241104162329.php
│   ├── Version20241124155724.php
│   ├── Version20241125210454.php
│   ├── Version20250128125727.php
│   ├── Version20250203232039.php
│   ├── Version20250204152300.php
│   ├── Version20250706115844.php
│   ├── Version20250723183702.php
│   ├── Version20250802102904.php
│   ├── Version20250812194529.php
│   ├── Version20250813132233.php
│   ├── Version20250907112001.php
│   ├── Version20250924105525.php
│   ├── Version20251022104152.php
│   ├── Version20251022115254.php
│   ├── Version20251031174052.php
│   ├── Version20251118112235.php
│   ├── Version20251129140919.php
│   ├── Version20251206145724.php
│   ├── Version20251214111055.php
│   ├── Version20260113103210.php
│   ├── Version20260113151625.php
│   ├── Version20260118131639.php
│   ├── Version20260118142727.php
│   ├── Version20260120175744.php
│   ├── Version20260127111110.php
│   ├── Version20260201131000.php
│   ├── Version20260224224633.php
│   ├── Version20260303103217.php
│   ├── Version20260303142852.php
│   ├── Version20260315190023.php
│   └── Version20260330132857.php
├── package.json
├── phpstan.dist.neon
├── phpunit.xml.dist
├── public/
│   ├── assets/
│   │   └── icons/
│   │       └── mbin-shortcut-base-file.psd
│   ├── index.php
│   ├── js/
│   │   └── fos_js_routes.json
│   ├── manifest.json
│   ├── robots.txt
│   └── sw.js
├── src/
│   ├── ActivityPub/
│   │   ├── ActorHandle.php
│   │   ├── JsonRd.php
│   │   └── JsonRdLink.php
│   ├── ArgumentValueResolver/
│   │   ├── FavouriteResolver.php
│   │   ├── MagazineResolver.php
│   │   ├── ReportResolver.php
│   │   ├── UserResolver.php
│   │   └── VotableResolver.php
│   ├── Command/
│   │   ├── ActorUpdateCommand.php
│   │   ├── AdminCommand.php
│   │   ├── ApImportObject.php
│   │   ├── AwesomeBot/
│   │   │   ├── AwesomeBotEntries.php
│   │   │   ├── AwesomeBotFixtures.php
│   │   │   └── AwesomeBotMagazine.php
│   │   ├── CheckDuplicatesUsersMagazines.php
│   │   ├── DeleteMonitoringDataCommand.php
│   │   ├── DeleteOrphanedImagesCommand.php
│   │   ├── DeleteUserCommand.php
│   │   ├── DocumentationGenerateFederationCommand.php
│   │   ├── ImageCacheCommand.php
│   │   ├── MagazineCreateCommand.php
│   │   ├── MagazineUnsubCommand.php
│   │   ├── ModeratorCommand.php
│   │   ├── MoveEntriesByTagCommand.php
│   │   ├── MovePostsByTagCommand.php
│   │   ├── PostMagazinesUpdateCommand.php
│   │   ├── RefreshImageMetaDataCommand.php
│   │   ├── RemoveAccountsMarkedForDeletion.php
│   │   ├── RemoveDMAndBanCommand.php
│   │   ├── RemoveDeadMessagesCommand.php
│   │   ├── RemoveDuplicatesCommand.php
│   │   ├── RemoveFailedMessagesCommand.php
│   │   ├── RemoveOldImagesCommand.php
│   │   ├── RemoveRemoteMediaCommand.php
│   │   ├── SubMagazineCommand.php
│   │   ├── Update/
│   │   │   ├── ApKeysUpdateCommand.php
│   │   │   ├── Async/
│   │   │   │   ├── ImageBlurhashHandler.php
│   │   │   │   ├── ImageBlurhashMessage.php
│   │   │   │   ├── NoteVisibilityHandler.php
│   │   │   │   └── NoteVisibilityMessage.php
│   │   │   ├── ImageBlurhashUpdateCommand.php
│   │   │   ├── LocalMagazineApProfile.php
│   │   │   ├── NoteVisibilityUpdateCommand.php
│   │   │   ├── PostCommentRootUpdateCommand.php
│   │   │   ├── PushKeysUpdateCommand.php
│   │   │   ├── RemoveMagazineNameFromTagsCommand.php
│   │   │   ├── RemoveRemoteEntriesFromLocalDomainCommand.php
│   │   │   ├── SlugUpdateCommand.php
│   │   │   ├── TagsUpdateCommand.php
│   │   │   └── UserLastActiveUpdateCommand.php
│   │   ├── UserCommand.php
│   │   ├── UserPasswordCommand.php
│   │   ├── UserRotatePrivateKeys.php
│   │   ├── UserUnsubCommand.php
│   │   └── VerifyCommand.php
│   ├── Controller/
│   │   ├── .gitignore
│   │   ├── AboutController.php
│   │   ├── AbstractController.php
│   │   ├── ActivityPub/
│   │   │   ├── ContextsController.php
│   │   │   ├── EntryCommentController.php
│   │   │   ├── EntryController.php
│   │   │   ├── HostMetaController.php
│   │   │   ├── InstanceController.php
│   │   │   ├── InstanceOutboxController.php
│   │   │   ├── Magazine/
│   │   │   │   ├── MagazineController.php
│   │   │   │   ├── MagazineFollowersController.php
│   │   │   │   ├── MagazineInboxController.php
│   │   │   │   ├── MagazineModeratorsController.php
│   │   │   │   ├── MagazineOutboxController.php
│   │   │   │   └── MagazinePinnedController.php
│   │   │   ├── MessageController.php
│   │   │   ├── NodeInfoController.php
│   │   │   ├── ObjectController.php
│   │   │   ├── PostCommentController.php
│   │   │   ├── PostController.php
│   │   │   ├── ReportController.php
│   │   │   ├── SharedInboxController.php
│   │   │   ├── User/
│   │   │   │   ├── UserController.php
│   │   │   │   ├── UserFollowersController.php
│   │   │   │   ├── UserInboxController.php
│   │   │   │   └── UserOutboxController.php
│   │   │   └── WebFingerController.php
│   │   ├── Admin/
│   │   │   ├── AdminClearCacheController.php
│   │   │   ├── AdminDashboardController.php
│   │   │   ├── AdminDeletionController.php
│   │   │   ├── AdminFederationController.php
│   │   │   ├── AdminMagazineOwnershipRequestController.php
│   │   │   ├── AdminModeratorController.php
│   │   │   ├── AdminMonitoringController.php
│   │   │   ├── AdminPagesController.php
│   │   │   ├── AdminReportController.php
│   │   │   ├── AdminSettingsController.php
│   │   │   ├── AdminSignupRequestsController.php
│   │   │   └── AdminUsersController.php
│   │   ├── AgentController.php
│   │   ├── AjaxController.php
│   │   ├── Api/
│   │   │   ├── BaseApi.php
│   │   │   ├── Bookmark/
│   │   │   │   ├── BookmarkApiController.php
│   │   │   │   └── BookmarkListApiController.php
│   │   │   ├── Combined/
│   │   │   │   └── CombinedRetrieveApi.php
│   │   │   ├── Domain/
│   │   │   │   ├── DomainBaseApi.php
│   │   │   │   ├── DomainBlockApi.php
│   │   │   │   ├── DomainRetrieveApi.php
│   │   │   │   └── DomainSubscribeApi.php
│   │   │   ├── Entry/
│   │   │   │   ├── Admin/
│   │   │   │   │   ├── EntriesChangeMagazineApi.php
│   │   │   │   │   └── EntriesPurgeApi.php
│   │   │   │   ├── Comments/
│   │   │   │   │   ├── Admin/
│   │   │   │   │   │   └── EntryCommentsPurgeApi.php
│   │   │   │   │   ├── DomainEntryCommentsRetrieveApi.php
│   │   │   │   │   ├── EntryCommentsActivityApi.php
│   │   │   │   │   ├── EntryCommentsCreateApi.php
│   │   │   │   │   ├── EntryCommentsDeleteApi.php
│   │   │   │   │   ├── EntryCommentsFavouriteApi.php
│   │   │   │   │   ├── EntryCommentsReportApi.php
│   │   │   │   │   ├── EntryCommentsRetrieveApi.php
│   │   │   │   │   ├── EntryCommentsUpdateApi.php
│   │   │   │   │   ├── EntryCommentsVoteApi.php
│   │   │   │   │   ├── Moderate/
│   │   │   │   │   │   ├── EntryCommentsSetAdultApi.php
│   │   │   │   │   │   ├── EntryCommentsSetLanguageApi.php
│   │   │   │   │   │   └── EntryCommentsTrashApi.php
│   │   │   │   │   └── UserEntryCommentsRetrieveApi.php
│   │   │   │   ├── DomainEntriesRetrieveApi.php
│   │   │   │   ├── EntriesActivityApi.php
│   │   │   │   ├── EntriesBaseApi.php
│   │   │   │   ├── EntriesDeleteApi.php
│   │   │   │   ├── EntriesFavouriteApi.php
│   │   │   │   ├── EntriesReportApi.php
│   │   │   │   ├── EntriesRetrieveApi.php
│   │   │   │   ├── EntriesUpdateApi.php
│   │   │   │   ├── EntriesVoteApi.php
│   │   │   │   ├── MagazineEntriesRetrieveApi.php
│   │   │   │   ├── MagazineEntryCreateApi.php
│   │   │   │   ├── Moderate/
│   │   │   │   │   ├── EntriesLockApi.php
│   │   │   │   │   ├── EntriesPinApi.php
│   │   │   │   │   ├── EntriesSetAdultApi.php
│   │   │   │   │   ├── EntriesSetLanguageApi.php
│   │   │   │   │   └── EntriesTrashApi.php
│   │   │   │   └── UserEntriesRetrieveApi.php
│   │   │   ├── EntryComments.php
│   │   │   ├── Instance/
│   │   │   │   ├── Admin/
│   │   │   │   │   ├── InstanceRetrieveSettingsApi.php
│   │   │   │   │   ├── InstanceUpdateFederationApi.php
│   │   │   │   │   ├── InstanceUpdatePagesApi.php
│   │   │   │   │   └── InstanceUpdateSettingsApi.php
│   │   │   │   ├── InstanceBaseApi.php
│   │   │   │   ├── InstanceDetailsApi.php
│   │   │   │   ├── InstanceModLogApi.php
│   │   │   │   ├── InstanceRetrieveFederationApi.php
│   │   │   │   ├── InstanceRetrieveInfoApi.php
│   │   │   │   └── InstanceRetrieveStatsApi.php
│   │   │   ├── Magazine/
│   │   │   │   ├── Admin/
│   │   │   │   │   ├── MagazineAddBadgesApi.php
│   │   │   │   │   ├── MagazineAddModeratorsApi.php
│   │   │   │   │   ├── MagazineAddTagsApi.php
│   │   │   │   │   ├── MagazineCreateApi.php
│   │   │   │   │   ├── MagazineDeleteApi.php
│   │   │   │   │   ├── MagazineDeleteBannerApi.php
│   │   │   │   │   ├── MagazineDeleteIconApi.php
│   │   │   │   │   ├── MagazinePurgeApi.php
│   │   │   │   │   ├── MagazineRemoveBadgesApi.php
│   │   │   │   │   ├── MagazineRemoveModeratorsApi.php
│   │   │   │   │   ├── MagazineRemoveTagsApi.php
│   │   │   │   │   ├── MagazineRetrieveStatsApi.php
│   │   │   │   │   ├── MagazineUpdateApi.php
│   │   │   │   │   └── MagazineUpdateThemeApi.php
│   │   │   │   ├── MagazineBaseApi.php
│   │   │   │   ├── MagazineBlockApi.php
│   │   │   │   ├── MagazineModLogApi.php
│   │   │   │   ├── MagazineRetrieveApi.php
│   │   │   │   ├── MagazineRetrieveThemeApi.php
│   │   │   │   ├── MagazineSubscribeApi.php
│   │   │   │   └── Moderate/
│   │   │   │       ├── MagazineBansRetrieveApi.php
│   │   │   │       ├── MagazineModOwnerRequestApi.php
│   │   │   │       ├── MagazineReportsAcceptApi.php
│   │   │   │       ├── MagazineReportsRejectApi.php
│   │   │   │       ├── MagazineReportsRetrieveApi.php
│   │   │   │       ├── MagazineTrashedRetrieveApi.php
│   │   │   │       └── MagazineUserBanApi.php
│   │   │   ├── MagazineBadges.php
│   │   │   ├── Message/
│   │   │   │   ├── MessageBaseApi.php
│   │   │   │   ├── MessageReadApi.php
│   │   │   │   ├── MessageRetrieveApi.php
│   │   │   │   ├── MessageThreadCreateApi.php
│   │   │   │   └── MessageThreadReplyApi.php
│   │   │   ├── Notification/
│   │   │   │   ├── NotificationBaseApi.php
│   │   │   │   ├── NotificationPurgeApi.php
│   │   │   │   ├── NotificationPushApi.php
│   │   │   │   ├── NotificationReadApi.php
│   │   │   │   ├── NotificationRetrieveApi.php
│   │   │   │   └── NotificationSettingApi.php
│   │   │   ├── OAuth2/
│   │   │   │   ├── Admin/
│   │   │   │   │   ├── RetrieveClientApi.php
│   │   │   │   │   └── RetrieveClientStatsApi.php
│   │   │   │   ├── CreateClientApi.php
│   │   │   │   ├── DeleteClientApi.php
│   │   │   │   └── RevokeTokenApi.php
│   │   │   ├── Post/
│   │   │   │   ├── Admin/
│   │   │   │   │   └── PostsPurgeApi.php
│   │   │   │   ├── Comments/
│   │   │   │   │   ├── Admin/
│   │   │   │   │   │   └── PostCommentsPurgeApi.php
│   │   │   │   │   ├── Moderate/
│   │   │   │   │   │   ├── PostCommentsSetAdultApi.php
│   │   │   │   │   │   ├── PostCommentsSetLanguageApi.php
│   │   │   │   │   │   └── PostCommentsTrashApi.php
│   │   │   │   │   ├── PostCommentsActivityApi.php
│   │   │   │   │   ├── PostCommentsCreateApi.php
│   │   │   │   │   ├── PostCommentsDeleteApi.php
│   │   │   │   │   ├── PostCommentsFavouriteApi.php
│   │   │   │   │   ├── PostCommentsReportApi.php
│   │   │   │   │   ├── PostCommentsRetrieveApi.php
│   │   │   │   │   ├── PostCommentsUpdateApi.php
│   │   │   │   │   ├── PostCommentsVoteApi.php
│   │   │   │   │   └── UserPostCommentsRetrieveApi.php
│   │   │   │   ├── Moderate/
│   │   │   │   │   ├── PostsLockApi.php
│   │   │   │   │   ├── PostsPinApi.php
│   │   │   │   │   ├── PostsSetAdultApi.php
│   │   │   │   │   ├── PostsSetLanguageApi.php
│   │   │   │   │   └── PostsTrashApi.php
│   │   │   │   ├── PostsActivityApi.php
│   │   │   │   ├── PostsBaseApi.php
│   │   │   │   ├── PostsCreateApi.php
│   │   │   │   ├── PostsDeleteApi.php
│   │   │   │   ├── PostsFavouriteApi.php
│   │   │   │   ├── PostsReportApi.php
│   │   │   │   ├── PostsRetrieveApi.php
│   │   │   │   ├── PostsUpdateApi.php
│   │   │   │   ├── PostsVoteApi.php
│   │   │   │   └── UserPostsRetrieveApi.php
│   │   │   ├── PostComments.php
│   │   │   ├── RandomMagazine.php
│   │   │   ├── Search/
│   │   │   │   └── SearchRetrieveApi.php
│   │   │   └── User/
│   │   │       ├── Admin/
│   │   │       │   ├── UserApplicationApi.php
│   │   │       │   ├── UserBanApi.php
│   │   │       │   ├── UserDeleteApi.php
│   │   │       │   ├── UserPurgeApi.php
│   │   │       │   ├── UserRetrieveBannedApi.php
│   │   │       │   └── UserVerifyApi.php
│   │   │       ├── UserBaseApi.php
│   │   │       ├── UserBlockApi.php
│   │   │       ├── UserContentApi.php
│   │   │       ├── UserDeleteImagesApi.php
│   │   │       ├── UserFilterListApi.php
│   │   │       ├── UserFollowApi.php
│   │   │       ├── UserModeratesApi.php
│   │   │       ├── UserRetrieveApi.php
│   │   │       ├── UserRetrieveOAuthConsentsApi.php
│   │   │       ├── UserUpdateApi.php
│   │   │       ├── UserUpdateImagesApi.php
│   │   │       └── UserUpdateOAuthConsentsApi.php
│   │   ├── BookmarkController.php
│   │   ├── BookmarkListController.php
│   │   ├── BoostController.php
│   │   ├── ContactController.php
│   │   ├── CrosspostController.php
│   │   ├── CustomStyleController.php
│   │   ├── Domain/
│   │   │   ├── DomainBlockController.php
│   │   │   ├── DomainCommentFrontController.php
│   │   │   ├── DomainFrontController.php
│   │   │   └── DomainSubController.php
│   │   ├── Entry/
│   │   │   ├── Comment/
│   │   │   │   ├── EntryCommentChangeAdultController.php
│   │   │   │   ├── EntryCommentChangeLangController.php
│   │   │   │   ├── EntryCommentCreateController.php
│   │   │   │   ├── EntryCommentDeleteController.php
│   │   │   │   ├── EntryCommentDeleteImageController.php
│   │   │   │   ├── EntryCommentEditController.php
│   │   │   │   ├── EntryCommentFavouriteController.php
│   │   │   │   ├── EntryCommentFrontController.php
│   │   │   │   ├── EntryCommentModerateController.php
│   │   │   │   ├── EntryCommentResponseTrait.php
│   │   │   │   ├── EntryCommentViewController.php
│   │   │   │   └── EntryCommentVotersController.php
│   │   │   ├── EntryChangeAdultController.php
│   │   │   ├── EntryChangeLangController.php
│   │   │   ├── EntryChangeMagazineController.php
│   │   │   ├── EntryCreateController.php
│   │   │   ├── EntryDeleteController.php
│   │   │   ├── EntryDeleteImageController.php
│   │   │   ├── EntryEditController.php
│   │   │   ├── EntryFavouriteController.php
│   │   │   ├── EntryFrontController.php
│   │   │   ├── EntryLockController.php
│   │   │   ├── EntryModerateController.php
│   │   │   ├── EntryPinController.php
│   │   │   ├── EntrySingleController.php
│   │   │   ├── EntryTemplateTrait.php
│   │   │   └── EntryVotersController.php
│   │   ├── FaqController.php
│   │   ├── FavouriteController.php
│   │   ├── FederationController.php
│   │   ├── Magazine/
│   │   │   ├── MagazineAbandonedController.php
│   │   │   ├── MagazineBlockController.php
│   │   │   ├── MagazineCreateController.php
│   │   │   ├── MagazineDeleteController.php
│   │   │   ├── MagazineListController.php
│   │   │   ├── MagazineModController.php
│   │   │   ├── MagazineModeratorRequestController.php
│   │   │   ├── MagazineOwnershipRequestController.php
│   │   │   ├── MagazinePeopleFrontController.php
│   │   │   ├── MagazineRemoveSubscriptionsController.php
│   │   │   ├── MagazineSubController.php
│   │   │   └── Panel/
│   │   │       ├── MagazineBadgeController.php
│   │   │       ├── MagazineBanController.php
│   │   │       ├── MagazineEditController.php
│   │   │       ├── MagazineModeratorController.php
│   │   │       ├── MagazineModeratorRequestsController.php
│   │   │       ├── MagazineReportController.php
│   │   │       ├── MagazineStatsController.php
│   │   │       ├── MagazineTagController.php
│   │   │       ├── MagazineThemeController.php
│   │   │       └── MagazineTrashController.php
│   │   ├── Message/
│   │   │   ├── MessageCreateThreadController.php
│   │   │   ├── MessageThreadController.php
│   │   │   └── MessageThreadListController.php
│   │   ├── ModlogController.php
│   │   ├── NotificationSettingsController.php
│   │   ├── People/
│   │   │   └── PeopleFrontController.php
│   │   ├── Post/
│   │   │   ├── Comment/
│   │   │   │   ├── PostCommentChangeAdultController.php
│   │   │   │   ├── PostCommentChangeLangController.php
│   │   │   │   ├── PostCommentCreateController.php
│   │   │   │   ├── PostCommentDeleteController.php
│   │   │   │   ├── PostCommentDeleteImageController.php
│   │   │   │   ├── PostCommentEditController.php
│   │   │   │   ├── PostCommentFavouriteController.php
│   │   │   │   ├── PostCommentModerateController.php
│   │   │   │   ├── PostCommentResponseTrait.php
│   │   │   │   └── PostCommentVotersController.php
│   │   │   ├── PostChangeAdultController.php
│   │   │   ├── PostChangeLangController.php
│   │   │   ├── PostChangeMagazineController.php
│   │   │   ├── PostCreateController.php
│   │   │   ├── PostDeleteController.php
│   │   │   ├── PostDeleteImageController.php
│   │   │   ├── PostEditController.php
│   │   │   ├── PostFavouriteController.php
│   │   │   ├── PostLockController.php
│   │   │   ├── PostModerateController.php
│   │   │   ├── PostPinController.php
│   │   │   ├── PostSingleController.php
│   │   │   └── PostVotersController.php
│   │   ├── PrivacyPolicyController.php
│   │   ├── ReportController.php
│   │   ├── SearchController.php
│   │   ├── Security/
│   │   │   ├── AuthentikController.php
│   │   │   ├── AzureController.php
│   │   │   ├── DiscordController.php
│   │   │   ├── FacebookController.php
│   │   │   ├── GithubController.php
│   │   │   ├── GoogleController.php
│   │   │   ├── KeycloakController.php
│   │   │   ├── LoginController.php
│   │   │   ├── LogoutController.php
│   │   │   ├── PrivacyPortalController.php
│   │   │   ├── RegisterController.php
│   │   │   ├── ResendActivationEmailController.php
│   │   │   ├── ResetPasswordController.php
│   │   │   ├── SimpleLoginController.php
│   │   │   ├── VerifyEmailController.php
│   │   │   └── ZitadelController.php
│   │   ├── StatsController.php
│   │   ├── Tag/
│   │   │   ├── TagBanController.php
│   │   │   ├── TagCommentFrontController.php
│   │   │   ├── TagEntryFrontController.php
│   │   │   ├── TagOverviewController.php
│   │   │   ├── TagPeopleFrontController.php
│   │   │   └── TagPostFrontController.php
│   │   ├── TermsController.php
│   │   ├── Traits/
│   │   │   └── PrivateContentTrait.php
│   │   ├── User/
│   │   │   ├── AccountDeletionController.php
│   │   │   ├── FilterListsController.php
│   │   │   ├── Profile/
│   │   │   │   ├── User2FAController.php
│   │   │   │   ├── UserBlockController.php
│   │   │   │   ├── UserEditController.php
│   │   │   │   ├── UserNotificationController.php
│   │   │   │   ├── UserReportsController.php
│   │   │   │   ├── UserReportsModController.php
│   │   │   │   ├── UserSettingController.php
│   │   │   │   ├── UserStatsController.php
│   │   │   │   ├── UserSubController.php
│   │   │   │   └── UserVerifyController.php
│   │   │   ├── ThemeSettingsController.php
│   │   │   ├── UserAvatarDeleteController.php
│   │   │   ├── UserBanController.php
│   │   │   ├── UserBlockController.php
│   │   │   ├── UserCoverDeleteController.php
│   │   │   ├── UserDeleteController.php
│   │   │   ├── UserFollowController.php
│   │   │   ├── UserFrontController.php
│   │   │   ├── UserNoteController.php
│   │   │   ├── UserRemoveFollowing.php
│   │   │   ├── UserReputationController.php
│   │   │   ├── UserSuspendController.php
│   │   │   └── UserThemeController.php
│   │   └── VoteController.php
│   ├── DTO/
│   │   ├── ActivitiesResponseDto.php
│   │   ├── ActivityPub/
│   │   │   ├── ImageDto.php
│   │   │   └── VideoDto.php
│   │   ├── BadgeDto.php
│   │   ├── BadgeResponseDto.php
│   │   ├── BookmarkListDto.php
│   │   ├── BookmarksDto.php
│   │   ├── ClientAccessStatsResponseDto.php
│   │   ├── ClientConsentsRequestDto.php
│   │   ├── ClientConsentsResponseDto.php
│   │   ├── ClientResponseDto.php
│   │   ├── ConfirmDefederationDto.php
│   │   ├── ContactDto.php
│   │   ├── ContentRequestDto.php
│   │   ├── ContentResponseDto.php
│   │   ├── ContentStatsResponseDto.php
│   │   ├── Contracts/
│   │   │   ├── UserDtoInterface.php
│   │   │   └── VisibilityAwareDtoTrait.php
│   │   ├── DomainDto.php
│   │   ├── EntryCommentDto.php
│   │   ├── EntryCommentRequestDto.php
│   │   ├── EntryCommentResponseDto.php
│   │   ├── EntryDto.php
│   │   ├── EntryRequestDto.php
│   │   ├── EntryResponseDto.php
│   │   ├── ExtendedContentResponseDto.php
│   │   ├── FederationSettingsDto.php
│   │   ├── GroupedMonitoringQueryDto.php
│   │   ├── ImageDto.php
│   │   ├── ImageUploadDto.php
│   │   ├── InstanceDto.php
│   │   ├── InstancesDto.php
│   │   ├── InstancesDtoV2.php
│   │   ├── MagazineBanDto.php
│   │   ├── MagazineBanResponseDto.php
│   │   ├── MagazineDto.php
│   │   ├── MagazineLogResponseDto.php
│   │   ├── MagazineRequestDto.php
│   │   ├── MagazineResponseDto.php
│   │   ├── MagazineSmallResponseDto.php
│   │   ├── MagazineThemeDto.php
│   │   ├── MagazineThemeRequestDto.php
│   │   ├── MagazineThemeResponseDto.php
│   │   ├── MagazineUpdateRequestDto.php
│   │   ├── MessageDto.php
│   │   ├── MessageResponseDto.php
│   │   ├── MessageThreadResponseDto.php
│   │   ├── ModeratorDto.php
│   │   ├── ModeratorResponseDto.php
│   │   ├── ModlogFilterDto.php
│   │   ├── MonitoringExecutionContextFilterDto.php
│   │   ├── NotificationPushSubscriptionRequestDto.php
│   │   ├── OAuth2ClientDto.php
│   │   ├── PageDto.php
│   │   ├── PostCommentDto.php
│   │   ├── PostCommentRequestDto.php
│   │   ├── PostCommentResponseDto.php
│   │   ├── PostDto.php
│   │   ├── PostRequestDto.php
│   │   ├── PostResponseDto.php
│   │   ├── RemoteInstanceDto.php
│   │   ├── ReportDto.php
│   │   ├── ReportRequestDto.php
│   │   ├── ReportResponseDto.php
│   │   ├── SearchDto.php
│   │   ├── SearchResponseDto.php
│   │   ├── SettingsDto.php
│   │   ├── SiteResponseDto.php
│   │   ├── Temp2FADto.php
│   │   ├── ToggleCreatedDto.php
│   │   ├── UserBanResponseDto.php
│   │   ├── UserDto.php
│   │   ├── UserFilterListDto.php
│   │   ├── UserFilterListResponseDto.php
│   │   ├── UserFilterWordDto.php
│   │   ├── UserNoteDto.php
│   │   ├── UserProfileRequestDto.php
│   │   ├── UserResponseDto.php
│   │   ├── UserSettingsDto.php
│   │   ├── UserSignupResponseDto.php
│   │   ├── UserSmallResponseDto.php
│   │   └── VoteStatsResponseDto.php
│   ├── DataFixtures/
│   │   ├── BaseFixture.php
│   │   ├── EntryCommentFixtures.php
│   │   ├── EntryFixtures.php
│   │   ├── MagazineFixtures.php
│   │   ├── PostCommentFixtures.php
│   │   ├── PostFixtures.php
│   │   ├── ReportFixtures.php
│   │   ├── SubFixtures.php
│   │   ├── UserFixtures.php
│   │   └── VoteFixtures.php
│   ├── DoctrineExtensions/
│   │   └── DBAL/
│   │       └── Types/
│   │           ├── Citext.php
│   │           ├── EnumApplicationStatus.php
│   │           ├── EnumDirectMessageSettings.php
│   │           ├── EnumFrontContentOptions.php
│   │           ├── EnumNotificationStatus.php
│   │           ├── EnumSortOptions.php
│   │           └── EnumType.php
│   ├── Document/
│   │   └── .gitignore
│   ├── Entity/
│   │   ├── .gitignore
│   │   ├── Activity.php
│   │   ├── ApActivity.php
│   │   ├── Badge.php
│   │   ├── Bookmark.php
│   │   ├── BookmarkList.php
│   │   ├── Client.php
│   │   ├── Contracts/
│   │   │   ├── ActivityPubActivityInterface.php
│   │   │   ├── ActivityPubActorInterface.php
│   │   │   ├── ApiResourceInterface.php
│   │   │   ├── CommentInterface.php
│   │   │   ├── ContentInterface.php
│   │   │   ├── ContentVisibilityInterface.php
│   │   │   ├── DomainInterface.php
│   │   │   ├── FavouriteInterface.php
│   │   │   ├── NotificationInterface.php
│   │   │   ├── RankingInterface.php
│   │   │   ├── ReportInterface.php
│   │   │   ├── VisibilityInterface.php
│   │   │   ├── VotableInterface.php
│   │   │   └── VoteInterface.php
│   │   ├── Domain.php
│   │   ├── DomainBlock.php
│   │   ├── DomainSubscription.php
│   │   ├── Embed.php
│   │   ├── Entry.php
│   │   ├── EntryBadge.php
│   │   ├── EntryComment.php
│   │   ├── EntryCommentCreatedNotification.php
│   │   ├── EntryCommentDeletedNotification.php
│   │   ├── EntryCommentEditedNotification.php
│   │   ├── EntryCommentFavourite.php
│   │   ├── EntryCommentMentionedNotification.php
│   │   ├── EntryCommentReplyNotification.php
│   │   ├── EntryCommentReport.php
│   │   ├── EntryCommentVote.php
│   │   ├── EntryCreatedNotification.php
│   │   ├── EntryDeletedNotification.php
│   │   ├── EntryEditedNotification.php
│   │   ├── EntryFavourite.php
│   │   ├── EntryMentionedNotification.php
│   │   ├── EntryReport.php
│   │   ├── EntryVote.php
│   │   ├── Favourite.php
│   │   ├── Hashtag.php
│   │   ├── HashtagLink.php
│   │   ├── Image.php
│   │   ├── Instance.php
│   │   ├── Magazine.php
│   │   ├── MagazineBan.php
│   │   ├── MagazineBanNotification.php
│   │   ├── MagazineBlock.php
│   │   ├── MagazineLog.php
│   │   ├── MagazineLogBan.php
│   │   ├── MagazineLogEntryCommentDeleted.php
│   │   ├── MagazineLogEntryCommentRestored.php
│   │   ├── MagazineLogEntryDeleted.php
│   │   ├── MagazineLogEntryLocked.php
│   │   ├── MagazineLogEntryPinned.php
│   │   ├── MagazineLogEntryRestored.php
│   │   ├── MagazineLogEntryUnlocked.php
│   │   ├── MagazineLogEntryUnpinned.php
│   │   ├── MagazineLogModeratorAdd.php
│   │   ├── MagazineLogModeratorRemove.php
│   │   ├── MagazineLogPostCommentDeleted.php
│   │   ├── MagazineLogPostCommentRestored.php
│   │   ├── MagazineLogPostDeleted.php
│   │   ├── MagazineLogPostLocked.php
│   │   ├── MagazineLogPostRestored.php
│   │   ├── MagazineLogPostUnlocked.php
│   │   ├── MagazineOwnershipRequest.php
│   │   ├── MagazineSubscription.php
│   │   ├── MagazineSubscriptionRequest.php
│   │   ├── MagazineUnBanNotification.php
│   │   ├── Message.php
│   │   ├── MessageNotification.php
│   │   ├── MessageThread.php
│   │   ├── Moderator.php
│   │   ├── ModeratorRequest.php
│   │   ├── MonitoringCurlRequest.php
│   │   ├── MonitoringExecutionContext.php
│   │   ├── MonitoringQuery.php
│   │   ├── MonitoringQueryString.php
│   │   ├── MonitoringTwigRender.php
│   │   ├── NewSignupNotification.php
│   │   ├── Notification.php
│   │   ├── NotificationSettings.php
│   │   ├── OAuth2ClientAccess.php
│   │   ├── OAuth2UserConsent.php
│   │   ├── Post.php
│   │   ├── PostComment.php
│   │   ├── PostCommentCreatedNotification.php
│   │   ├── PostCommentDeletedNotification.php
│   │   ├── PostCommentEditedNotification.php
│   │   ├── PostCommentFavourite.php
│   │   ├── PostCommentMentionedNotification.php
│   │   ├── PostCommentReplyNotification.php
│   │   ├── PostCommentReport.php
│   │   ├── PostCommentVote.php
│   │   ├── PostCreatedNotification.php
│   │   ├── PostDeletedNotification.php
│   │   ├── PostEditedNotification.php
│   │   ├── PostFavourite.php
│   │   ├── PostMentionedNotification.php
│   │   ├── PostReport.php
│   │   ├── PostVote.php
│   │   ├── Report.php
│   │   ├── ReportApprovedNotification.php
│   │   ├── ReportCreatedNotification.php
│   │   ├── ReportRejectedNotification.php
│   │   ├── ResetPasswordRequest.php
│   │   ├── Settings.php
│   │   ├── Site.php
│   │   ├── Traits/
│   │   │   ├── ActivityPubActivityTrait.php
│   │   │   ├── ActivityPubActorTrait.php
│   │   │   ├── ConsideredAtTrait.php
│   │   │   ├── CreatedAtTrait.php
│   │   │   ├── EditedAtTrait.php
│   │   │   ├── MonitoringPerformanceTrait.php
│   │   │   ├── RankingTrait.php
│   │   │   ├── UpdatedAtTrait.php
│   │   │   ├── VisibilityTrait.php
│   │   │   └── VotableTrait.php
│   │   ├── User.php
│   │   ├── UserBlock.php
│   │   ├── UserFilterList.php
│   │   ├── UserFollow.php
│   │   ├── UserFollowRequest.php
│   │   ├── UserNote.php
│   │   ├── UserPushSubscription.php
│   │   └── Vote.php
│   ├── Enums/
│   │   ├── EApplicationStatus.php
│   │   ├── EDirectMessageSettings.php
│   │   ├── EFrontContentOptions.php
│   │   ├── ENotificationStatus.php
│   │   ├── EPushNotificationType.php
│   │   └── ESortOptions.php
│   ├── Event/
│   │   ├── ActivityPub/
│   │   │   ├── CurlRequestBeginningEvent.php
│   │   │   ├── CurlRequestFinishedEvent.php
│   │   │   └── WebfingerResponseEvent.php
│   │   ├── DomainBlockedEvent.php
│   │   ├── DomainSubscribedEvent.php
│   │   ├── Entry/
│   │   │   ├── EntryBeforeDeletedEvent.php
│   │   │   ├── EntryBeforePurgeEvent.php
│   │   │   ├── EntryCreatedEvent.php
│   │   │   ├── EntryDeletedEvent.php
│   │   │   ├── EntryEditedEvent.php
│   │   │   ├── EntryHasBeenSeenEvent.php
│   │   │   ├── EntryLockEvent.php
│   │   │   ├── EntryPinEvent.php
│   │   │   ├── EntryRestoredEvent.php
│   │   │   └── PostLockEvent.php
│   │   ├── EntryComment/
│   │   │   ├── EntryCommentBeforeDeletedEvent.php
│   │   │   ├── EntryCommentBeforePurgeEvent.php
│   │   │   ├── EntryCommentCreatedEvent.php
│   │   │   ├── EntryCommentDeletedEvent.php
│   │   │   ├── EntryCommentEditedEvent.php
│   │   │   ├── EntryCommentPurgedEvent.php
│   │   │   └── EntryCommentRestoredEvent.php
│   │   ├── FavouriteEvent.php
│   │   ├── ImagePostProcessEvent.php
│   │   ├── Instance/
│   │   │   └── InstanceBanEvent.php
│   │   ├── Magazine/
│   │   │   ├── MagazineBanEvent.php
│   │   │   ├── MagazineBlockedEvent.php
│   │   │   ├── MagazineModeratorAddedEvent.php
│   │   │   ├── MagazineModeratorRemovedEvent.php
│   │   │   ├── MagazineSubscribedEvent.php
│   │   │   └── MagazineUpdatedEvent.php
│   │   ├── NotificationCreatedEvent.php
│   │   ├── Post/
│   │   │   ├── PostBeforeDeletedEvent.php
│   │   │   ├── PostBeforePurgeEvent.php
│   │   │   ├── PostCreatedEvent.php
│   │   │   ├── PostDeletedEvent.php
│   │   │   ├── PostEditedEvent.php
│   │   │   ├── PostHasBeenSeenEvent.php
│   │   │   └── PostRestoredEvent.php
│   │   ├── PostComment/
│   │   │   ├── PostCommentBeforeDeletedEvent.php
│   │   │   ├── PostCommentBeforePurgeEvent.php
│   │   │   ├── PostCommentCreatedEvent.php
│   │   │   ├── PostCommentDeletedEvent.php
│   │   │   ├── PostCommentEditedEvent.php
│   │   │   ├── PostCommentPurgedEvent.php
│   │   │   └── PostCommentRestoredEvent.php
│   │   ├── Report/
│   │   │   ├── ReportApprovedEvent.php
│   │   │   ├── ReportRejectedEvent.php
│   │   │   └── SubjectReportedEvent.php
│   │   ├── User/
│   │   │   ├── UserApplicationApprovedEvent.php
│   │   │   ├── UserApplicationRejectedEvent.php
│   │   │   ├── UserBlockEvent.php
│   │   │   ├── UserEditedEvent.php
│   │   │   └── UserFollowEvent.php
│   │   └── VoteEvent.php
│   ├── EventListener/
│   │   ├── ContentNotificationPurgeListener.php
│   │   ├── FederationStatusListener.php
│   │   ├── LanguageListener.php
│   │   ├── MagazineVisibilityListener.php
│   │   └── UserActivityListener.php
│   ├── EventSubscriber/
│   │   ├── ActivityPub/
│   │   │   ├── GroupWebFingerProfileSubscriber.php
│   │   │   ├── GroupWebFingerSubscriber.php
│   │   │   ├── MagazineFollowSubscriber.php
│   │   │   ├── MagazineModeratorAddedRemovedSubscriber.php
│   │   │   ├── UserFollowSubscriber.php
│   │   │   ├── UserWebFingerProfileSubscriber.php
│   │   │   └── UserWebFingerSubscriber.php
│   │   ├── AuthorizationCodeSubscriber.php
│   │   ├── ContentCountSubscriber.php
│   │   ├── Domain/
│   │   │   ├── DomainBlockSubscriber.php
│   │   │   └── DomainFollowSubscriber.php
│   │   ├── Entry/
│   │   │   ├── EntryCreateSubscriber.php
│   │   │   ├── EntryDeleteSubscriber.php
│   │   │   ├── EntryEditSubscriber.php
│   │   │   ├── EntryPinSubscriber.php
│   │   │   ├── EntryShowSubscriber.php
│   │   │   └── LockSubscriber.php
│   │   ├── EntryComment/
│   │   │   ├── EntryCommentCreateSubscriber.php
│   │   │   ├── EntryCommentDeleteSubscriber.php
│   │   │   └── EntryCommentEditSubscriber.php
│   │   ├── FavouriteHandleSubscriber.php
│   │   ├── Image/
│   │   │   ├── ExifCleanerSubscriber.php
│   │   │   └── ImageCompressSubscriber.php
│   │   ├── Instance/
│   │   │   └── InstanceBanSubscriber.php
│   │   ├── LogoutSubscriber.php
│   │   ├── Magazine/
│   │   │   ├── MagazineBanSubscriber.php
│   │   │   ├── MagazineBlockSubscriber.php
│   │   │   ├── MagazineLogSubscriber.php
│   │   │   └── MagazineUpdatedSubscriber.php
│   │   ├── Monitoring/
│   │   │   ├── CurlRequestSubscriber.php
│   │   │   ├── KernelEventsSubscriber.php
│   │   │   └── MessengerEventsSubscriber.php
│   │   ├── NotificationCreatedSubscriber.php
│   │   ├── Post/
│   │   │   ├── PostCreateSubscriber.php
│   │   │   ├── PostDeleteSubscriber.php
│   │   │   ├── PostEditSubscriber.php
│   │   │   └── PostShowSubscriber.php
│   │   ├── PostComment/
│   │   │   ├── PostCommentCreateSubscriber.php
│   │   │   ├── PostCommentDeleteSubscriber.php
│   │   │   └── PostCommentEditSubscriber.php
│   │   ├── ReportApprovedSubscriber.php
│   │   ├── ReportHandleSubscriber.php
│   │   ├── ReportRejectedSubscriber.php
│   │   ├── SubjectReportedSubscriber.php
│   │   ├── TwigGlobalSubscriber.php
│   │   ├── User/
│   │   │   ├── UserApplicationSubscriber.php
│   │   │   ├── UserBlockSubscriber.php
│   │   │   └── UserEditedSubscriber.php
│   │   └── VoteHandleSubscriber.php
│   ├── Exception/
│   │   ├── BadRequestDtoException.php
│   │   ├── BadUrlException.php
│   │   ├── CorruptedFileException.php
│   │   ├── EntityNotFoundException.php
│   │   ├── EntryLockedException.php
│   │   ├── FavouritedAlreadyException.php
│   │   ├── ImageDownloadTooLargeException.php
│   │   ├── InboxForwardingException.php
│   │   ├── InstanceBannedException.php
│   │   ├── InvalidApGetException.php
│   │   ├── InvalidApPostException.php
│   │   ├── InvalidApSignatureException.php
│   │   ├── InvalidUserPublicKeyException.php
│   │   ├── InvalidWebfingerException.php
│   │   ├── PostLockedException.php
│   │   ├── PostingRestrictedException.php
│   │   ├── SubjectHasBeenReportedException.php
│   │   ├── TagBannedException.php
│   │   ├── UserBannedException.php
│   │   ├── UserBlockedException.php
│   │   ├── UserCannotBeBanned.php
│   │   ├── UserCannotReceiveDirectMessage.php
│   │   └── UserDeletedException.php
│   ├── Factory/
│   │   ├── ActivityPub/
│   │   │   ├── ActivityFactory.php
│   │   │   ├── AddRemoveFactory.php
│   │   │   ├── BlockFactory.php
│   │   │   ├── CollectionFactory.php
│   │   │   ├── EntryCommentNoteFactory.php
│   │   │   ├── EntryPageFactory.php
│   │   │   ├── FlagFactory.php
│   │   │   ├── GroupFactory.php
│   │   │   ├── InstanceFactory.php
│   │   │   ├── LockFactory.php
│   │   │   ├── MessageFactory.php
│   │   │   ├── NodeInfoFactory.php
│   │   │   ├── PersonFactory.php
│   │   │   ├── PostCommentNoteFactory.php
│   │   │   ├── PostNoteFactory.php
│   │   │   └── TombstoneFactory.php
│   │   ├── BadgeFactory.php
│   │   ├── ClientConsentsFactory.php
│   │   ├── ClientFactory.php
│   │   ├── ContentActivityDtoFactory.php
│   │   ├── ContentManagerFactory.php
│   │   ├── DomainFactory.php
│   │   ├── EntryCommentFactory.php
│   │   ├── EntryFactory.php
│   │   ├── FavouriteFactory.php
│   │   ├── ImageFactory.php
│   │   ├── MagazineFactory.php
│   │   ├── MessageFactory.php
│   │   ├── ModeratorFactory.php
│   │   ├── PostCommentFactory.php
│   │   ├── PostFactory.php
│   │   ├── ReportFactory.php
│   │   ├── UserFactory.php
│   │   └── VoteFactory.php
│   ├── Feed/
│   │   └── Provider.php
│   ├── Form/
│   │   ├── BadgeType.php
│   │   ├── BookmarkListType.php
│   │   ├── ChangePasswordFormType.php
│   │   ├── ConfirmDefederationType.php
│   │   ├── Constraint/
│   │   │   └── ImageConstraint.php
│   │   ├── ContactType.php
│   │   ├── DataTransformer/
│   │   │   ├── BadgeCollectionToStringTransformer.php
│   │   │   ├── FeaturedMagazinesBarTransformer.php
│   │   │   ├── TagTransformer.php
│   │   │   └── UserTransformer.php
│   │   ├── EntryCommentType.php
│   │   ├── EntryEditType.php
│   │   ├── EntryType.php
│   │   ├── EventListener/
│   │   │   ├── AddFieldsOnUserEdit.php
│   │   │   ├── AvatarListener.php
│   │   │   ├── CaptchaListener.php
│   │   │   ├── DefaultLanguage.php
│   │   │   ├── DisableFieldsOnEntryEdit.php
│   │   │   ├── DisableFieldsOnMagazineEdit.php
│   │   │   ├── DisableFieldsOnUserEdit.php
│   │   │   ├── ImageListener.php
│   │   │   ├── RemoveFieldsOnEntryImageEdit.php
│   │   │   ├── RemoveFieldsOnEntryLinkCreate.php
│   │   │   └── RemoveRulesFieldIfEmpty.php
│   │   ├── Extension/
│   │   │   └── NoValidateExtension.php
│   │   ├── FederationSettingsType.php
│   │   ├── LangType.php
│   │   ├── MagazineBanType.php
│   │   ├── MagazinePageViewType.php
│   │   ├── MagazineTagsType.php
│   │   ├── MagazineThemeType.php
│   │   ├── MagazineType.php
│   │   ├── MessageType.php
│   │   ├── ModeratorType.php
│   │   ├── ModlogFilterType.php
│   │   ├── MonitoringExecutionContextFilterType.php
│   │   ├── PageType.php
│   │   ├── PostCommentType.php
│   │   ├── PostType.php
│   │   ├── ReportType.php
│   │   ├── ResendEmailActivationFormType.php
│   │   ├── ResetPasswordRequestFormType.php
│   │   ├── SearchType.php
│   │   ├── SettingsType.php
│   │   ├── Type/
│   │   │   ├── BadgesType.php
│   │   │   ├── LanguageType.php
│   │   │   ├── MagazineAutocompleteType.php
│   │   │   └── UserAutocompleteType.php
│   │   ├── UserAccountDeletionType.php
│   │   ├── UserBasicType.php
│   │   ├── UserDisable2FAType.php
│   │   ├── UserEmailType.php
│   │   ├── UserFilterListType.php
│   │   ├── UserFilterWordType.php
│   │   ├── UserNoteType.php
│   │   ├── UserPasswordType.php
│   │   ├── UserRegenerate2FABackupType.php
│   │   ├── UserRegisterType.php
│   │   ├── UserSettingsType.php
│   │   └── UserTwoFactorType.php
│   ├── Kernel.php
│   ├── Markdown/
│   │   ├── CommonMark/
│   │   │   ├── CommunityLinkParser.php
│   │   │   ├── DetailsBlockParser.php
│   │   │   ├── DetailsBlockRenderer.php
│   │   │   ├── DetailsBlockStartParser.php
│   │   │   ├── EmbedElement.php
│   │   │   ├── ExternalImagesRenderer.php
│   │   │   ├── ExternalLinkRenderer.php
│   │   │   ├── MentionLinkParser.php
│   │   │   ├── MentionType.php
│   │   │   ├── Node/
│   │   │   │   ├── ActivityPubMentionLink.php
│   │   │   │   ├── ActorSearchLink.php
│   │   │   │   ├── CommunityLink.php
│   │   │   │   ├── DetailsBlock.php
│   │   │   │   ├── MentionLink.php
│   │   │   │   ├── RoutedMentionLink.php
│   │   │   │   ├── TagLink.php
│   │   │   │   └── UnresolvableLink.php
│   │   │   ├── TagLinkParser.php
│   │   │   └── UnresolvableLinkRenderer.php
│   │   ├── Event/
│   │   │   ├── BuildCacheContext.php
│   │   │   └── ConvertMarkdown.php
│   │   ├── Factory/
│   │   │   ├── ConverterFactory.php
│   │   │   └── EnvironmentFactory.php
│   │   ├── Listener/
│   │   │   ├── CacheMarkdownListener.php
│   │   │   └── ConvertMarkdownListener.php
│   │   ├── MarkdownConverter.php
│   │   ├── MarkdownExtension.php
│   │   └── RenderTarget.php
│   ├── Message/
│   │   ├── ActivityPub/
│   │   │   ├── Inbox/
│   │   │   │   ├── ActivityMessage.php
│   │   │   │   ├── AddMessage.php
│   │   │   │   ├── AnnounceMessage.php
│   │   │   │   ├── BlockMessage.php
│   │   │   │   ├── ChainActivityMessage.php
│   │   │   │   ├── CreateMessage.php
│   │   │   │   ├── DeleteMessage.php
│   │   │   │   ├── DislikeMessage.php
│   │   │   │   ├── EntryPinMessage.php
│   │   │   │   ├── FlagMessage.php
│   │   │   │   ├── FollowMessage.php
│   │   │   │   ├── LikeMessage.php
│   │   │   │   ├── LockMessage.php
│   │   │   │   ├── RemoveMessage.php
│   │   │   │   └── UpdateMessage.php
│   │   │   ├── Outbox/
│   │   │   │   ├── AddMessage.php
│   │   │   │   ├── AnnounceLikeMessage.php
│   │   │   │   ├── AnnounceMessage.php
│   │   │   │   ├── BlockMessage.php
│   │   │   │   ├── CreateMessage.php
│   │   │   │   ├── DeleteMessage.php
│   │   │   │   ├── DeliverMessage.php
│   │   │   │   ├── EntryPinMessage.php
│   │   │   │   ├── FlagMessage.php
│   │   │   │   ├── FollowMessage.php
│   │   │   │   ├── GenericAnnounceMessage.php
│   │   │   │   ├── LikeMessage.php
│   │   │   │   ├── LockMessage.php
│   │   │   │   ├── RemoveMessage.php
│   │   │   │   └── UpdateMessage.php
│   │   │   └── UpdateActorMessage.php
│   │   ├── ClearDeadMessagesMessage.php
│   │   ├── ClearDeletedUserMessage.php
│   │   ├── Contracts/
│   │   │   ├── ActivityPubInboxInterface.php
│   │   │   ├── ActivityPubInboxReceiveInterface.php
│   │   │   ├── ActivityPubOutboxDeliverInterface.php
│   │   │   ├── ActivityPubOutboxInterface.php
│   │   │   ├── ActivityPubResolveInterface.php
│   │   │   ├── AsyncMessageInterface.php
│   │   │   ├── MessageInterface.php
│   │   │   ├── SchedulerInterface.php
│   │   │   └── SendConfirmationEmailInterface.php
│   │   ├── DeleteImageMessage.php
│   │   ├── DeleteUserMessage.php
│   │   ├── EntryEmbedMessage.php
│   │   ├── LinkEmbedMessage.php
│   │   ├── MagazinePurgeMessage.php
│   │   ├── Notification/
│   │   │   ├── EntryCommentCreatedNotificationMessage.php
│   │   │   ├── EntryCommentDeletedNotificationMessage.php
│   │   │   ├── EntryCommentEditedNotificationMessage.php
│   │   │   ├── EntryCreatedNotificationMessage.php
│   │   │   ├── EntryDeletedNotificationMessage.php
│   │   │   ├── EntryEditedNotificationMessage.php
│   │   │   ├── FavouriteNotificationMessage.php
│   │   │   ├── MagazineBanNotificationMessage.php
│   │   │   ├── PostCommentCreatedNotificationMessage.php
│   │   │   ├── PostCommentDeletedNotificationMessage.php
│   │   │   ├── PostCommentEditedNotificationMessage.php
│   │   │   ├── PostCreatedNotificationMessage.php
│   │   │   ├── PostDeletedNotificationMessage.php
│   │   │   ├── PostEditedNotificationMessage.php
│   │   │   ├── SentNewSignupNotificationMessage.php
│   │   │   └── VoteNotificationMessage.php
│   │   ├── UserApplicationAnswerMessage.php
│   │   ├── UserCreatedMessage.php
│   │   └── UserUpdatedMessage.php
│   ├── MessageHandler/
│   │   ├── ActivityPub/
│   │   │   ├── Inbox/
│   │   │   │   ├── ActivityHandler.php
│   │   │   │   ├── AddHandler.php
│   │   │   │   ├── AnnounceHandler.php
│   │   │   │   ├── BlockHandler.php
│   │   │   │   ├── ChainActivityHandler.php
│   │   │   │   ├── CreateHandler.php
│   │   │   │   ├── DeleteHandler.php
│   │   │   │   ├── DislikeHandler.php
│   │   │   │   ├── FlagHandler.php
│   │   │   │   ├── FollowHandler.php
│   │   │   │   ├── LikeHandler.php
│   │   │   │   ├── LockHandler.php
│   │   │   │   ├── RemoveHandler.php
│   │   │   │   └── UpdateHandler.php
│   │   │   ├── Outbox/
│   │   │   │   ├── AddHandler.php
│   │   │   │   ├── AnnounceHandler.php
│   │   │   │   ├── AnnounceLikeHandler.php
│   │   │   │   ├── BlockHandler.php
│   │   │   │   ├── CreateHandler.php
│   │   │   │   ├── DeleteHandler.php
│   │   │   │   ├── DeliverHandler.php
│   │   │   │   ├── EntryPinMessageHandler.php
│   │   │   │   ├── FlagHandler.php
│   │   │   │   ├── FollowHandler.php
│   │   │   │   ├── GenericAnnounceHandler.php
│   │   │   │   ├── LikeHandler.php
│   │   │   │   ├── LockHandler.php
│   │   │   │   ├── RemoveHandler.php
│   │   │   │   └── UpdateHandler.php
│   │   │   └── UpdateActorHandler.php
│   │   ├── AttachEntryEmbedHandler.php
│   │   ├── ClearDeadMessagesHandler.php
│   │   ├── ClearDeletedUserHandler.php
│   │   ├── DeleteImageHandler.php
│   │   ├── DeleteUserHandler.php
│   │   ├── LinkEmbedHandler.php
│   │   ├── MagazinePurgeHandler.php
│   │   ├── MbinMessageHandler.php
│   │   ├── Notification/
│   │   │   ├── SentEntryCommentCreatedNotificationHandler.php
│   │   │   ├── SentEntryCommentDeletedNotificationHandler.php
│   │   │   ├── SentEntryCommentEditedNotificationHandler.php
│   │   │   ├── SentEntryCreatedNotificationHandler.php
│   │   │   ├── SentEntryDeletedNotificationHandler.php
│   │   │   ├── SentEntryEditedNotificationHandler.php
│   │   │   ├── SentFavouriteNotificationHandler.php
│   │   │   ├── SentMagazineBanNotificationHandler.php
│   │   │   ├── SentNewSignupNotificationHandler.php
│   │   │   ├── SentPostCommentCreatedNotificationHandler.php
│   │   │   ├── SentPostCommentDeletedNotificationHandler.php
│   │   │   ├── SentPostCommentEditedNotificationHandler.php
│   │   │   ├── SentPostCreatedNotificationHandler.php
│   │   │   ├── SentPostDeletedNotificationHandler.php
│   │   │   ├── SentPostEditedNotificationHandler.php
│   │   │   └── SentVoteNotificationHandler.php
│   │   ├── SendApplicationAnswerMailHandler.php
│   │   └── SentUserConfirmationEmailHandler.php
│   ├── Middleware/
│   │   └── Monitoring/
│   │       ├── DoctrineConnectionMiddleware.php
│   │       ├── DoctrineDriverMiddleware.php
│   │       ├── DoctrineMiddleware.php
│   │       └── DoctrineStatementMiddleware.php
│   ├── PageView/
│   │   ├── ContentPageView.php
│   │   ├── EntryCommentPageView.php
│   │   ├── EntryPageView.php
│   │   ├── MagazinePageView.php
│   │   ├── MessageThreadPageView.php
│   │   ├── PostCommentPageView.php
│   │   └── PostPageView.php
│   ├── Pagination/
│   │   ├── AdapterFactory.php
│   │   ├── CachingQueryAdapter.php
│   │   ├── Cursor/
│   │   │   ├── CursorAdapterInterface.php
│   │   │   ├── CursorPagination.php
│   │   │   ├── CursorPaginationInterface.php
│   │   │   └── NativeQueryCursorAdapter.php
│   │   ├── NativeQueryAdapter.php
│   │   ├── Pagerfanta.php
│   │   ├── QueryAdapter.php
│   │   └── Transformation/
│   │       ├── ContentPopulationTransformer.php
│   │       ├── ResultTransformer.php
│   │       └── VoidTransformer.php
│   ├── Payloads/
│   │   ├── NodeInfo/
│   │   │   ├── NodeInfo.php
│   │   │   ├── NodeInfoServices.php
│   │   │   ├── NodeInfoSoftware.php
│   │   │   ├── NodeInfoSoftware21.php
│   │   │   ├── NodeInfoUsage.php
│   │   │   ├── NodeInfoUsageUsers.php
│   │   │   ├── WellKnownEndpoint.php
│   │   │   └── WellKnownNodeInfo.php
│   │   ├── NotificationsCountResponsePayload.php
│   │   ├── PushNotification.php
│   │   ├── RegisterPushRequestPayload.php
│   │   ├── TestPushRequestPayload.php
│   │   └── UnRegisterPushRequestPayload.php
│   ├── Provider/
│   │   ├── Authentik.php
│   │   ├── AuthentikResourceOwner.php
│   │   ├── SimpleLogin.php
│   │   ├── SimpleLoginResourceOwner.php
│   │   ├── Zitadel.php
│   │   └── ZitadelResourceOwner.php
│   ├── Repository/
│   │   ├── .gitignore
│   │   ├── ActivityRepository.php
│   │   ├── ApActivityRepository.php
│   │   ├── BadgeRepository.php
│   │   ├── BookmarkListRepository.php
│   │   ├── BookmarkRepository.php
│   │   ├── ContentRepository.php
│   │   ├── Criteria.php
│   │   ├── DomainRepository.php
│   │   ├── DomainSubscriptionRepository.php
│   │   ├── EmbedRepository.php
│   │   ├── EntryCommentRepository.php
│   │   ├── EntryRepository.php
│   │   ├── FavouriteRepository.php
│   │   ├── ImageRepository.php
│   │   ├── InstanceRepository.php
│   │   ├── MagazineBanRepository.php
│   │   ├── MagazineBlockRepository.php
│   │   ├── MagazineLogRepository.php
│   │   ├── MagazineOwnershipRequestRepository.php
│   │   ├── MagazineRepository.php
│   │   ├── MagazineSubscriptionRepository.php
│   │   ├── MagazineSubscriptionRequestRepository.php
│   │   ├── MessageRepository.php
│   │   ├── MessageThreadRepository.php
│   │   ├── ModeratorRequestRepository.php
│   │   ├── MonitoringRepository.php
│   │   ├── NotificationRepository.php
│   │   ├── NotificationSettingsRepository.php
│   │   ├── OAuth2ClientAccessRepository.php
│   │   ├── OAuth2UserConsentRepository.php
│   │   ├── PostCommentRepository.php
│   │   ├── PostRepository.php
│   │   ├── ReportRepository.php
│   │   ├── ReputationRepository.php
│   │   ├── ResetPasswordRequestRepository.php
│   │   ├── SearchRepository.php
│   │   ├── SettingsRepository.php
│   │   ├── SiteRepository.php
│   │   ├── StatsContentRepository.php
│   │   ├── StatsRepository.php
│   │   ├── StatsVotesRepository.php
│   │   ├── TagLinkRepository.php
│   │   ├── TagRepository.php
│   │   ├── UserBlockRepository.php
│   │   ├── UserFollowRepository.php
│   │   ├── UserFollowRequestRepository.php
│   │   ├── UserNoteRepository.php
│   │   ├── UserPushSubscriptionRepository.php
│   │   ├── UserRepository.php
│   │   └── VoteRepository.php
│   ├── Scheduler/
│   │   └── MbinTaskProvider.php
│   ├── Schema/
│   │   ├── ContentSchema.php
│   │   ├── CursorPaginationSchema.php
│   │   ├── Errors/
│   │   │   ├── BadRequestErrorSchema.php
│   │   │   ├── ForbiddenErrorSchema.php
│   │   │   ├── NotFoundErrorSchema.php
│   │   │   ├── TooManyRequestsErrorSchema.php
│   │   │   └── UnauthorizedErrorSchema.php
│   │   ├── InfoSchema.php
│   │   ├── NotificationSchema.php
│   │   ├── PaginationSchema.php
│   │   └── SearchActorSchema.php
│   ├── Security/
│   │   ├── AuthentikAuthenticator.php
│   │   ├── AzureAuthenticator.php
│   │   ├── DiscordAuthenticator.php
│   │   ├── EmailVerifier.php
│   │   ├── FacebookAuthenticator.php
│   │   ├── GithubAuthenticator.php
│   │   ├── GoogleAuthenticator.php
│   │   ├── KbinAuthenticator.php
│   │   ├── KeycloakAuthenticator.php
│   │   ├── MbinOAuthAuthenticatorBase.php
│   │   ├── OAuth/
│   │   │   └── ClientCredentialsGrant.php
│   │   ├── PrivacyPortalAuthenticator.php
│   │   ├── SimpleLoginAuthenticator.php
│   │   ├── UserChecker.php
│   │   ├── Voter/
│   │   │   ├── EntryCommentVoter.php
│   │   │   ├── EntryVoter.php
│   │   │   ├── FilterListVoter.php
│   │   │   ├── MagazineVoter.php
│   │   │   ├── MessageThreadVoter.php
│   │   │   ├── MessageVoter.php
│   │   │   ├── NotificationVoter.php
│   │   │   ├── OAuth2UserConsentVoter.php
│   │   │   ├── PostCommentVoter.php
│   │   │   ├── PostVoter.php
│   │   │   ├── PrivateInstanceVoter.php
│   │   │   └── UserVoter.php
│   │   └── ZitadelAuthenticator.php
│   ├── Service/
│   │   ├── ActivityPub/
│   │   │   ├── ActivityJsonBuilder.php
│   │   │   ├── ActivityPubContent.php
│   │   │   ├── ApHttpClient.php
│   │   │   ├── ApHttpClientInterface.php
│   │   │   ├── ApObjectExtractor.php
│   │   │   ├── ContextsProvider.php
│   │   │   ├── DeleteService.php
│   │   │   ├── HttpSignature.php
│   │   │   ├── KeysGenerator.php
│   │   │   ├── MarkdownConverter.php
│   │   │   ├── Note.php
│   │   │   ├── Page.php
│   │   │   ├── SignatureValidator.php
│   │   │   ├── StrikethroughConverter.php
│   │   │   ├── Webfinger/
│   │   │   │   ├── WebFinger.php
│   │   │   │   ├── WebFingerFactory.php
│   │   │   │   └── WebFingerParameters.php
│   │   │   └── Wrapper/
│   │   │       ├── AnnounceWrapper.php
│   │   │       ├── CollectionInfoWrapper.php
│   │   │       ├── CollectionItemsWrapper.php
│   │   │       ├── CreateWrapper.php
│   │   │       ├── DeleteWrapper.php
│   │   │       ├── FollowResponseWrapper.php
│   │   │       ├── FollowWrapper.php
│   │   │       ├── ImageWrapper.php
│   │   │       ├── LikeWrapper.php
│   │   │       ├── MentionsWrapper.php
│   │   │       ├── TagsWrapper.php
│   │   │       ├── UndoWrapper.php
│   │   │       └── UpdateWrapper.php
│   │   ├── ActivityPubManager.php
│   │   ├── BadgeManager.php
│   │   ├── BookmarkManager.php
│   │   ├── CacheService.php
│   │   ├── ContactManager.php
│   │   ├── Contracts/
│   │   │   ├── ContentManagerInterface.php
│   │   │   ├── ContentNotificationManagerInterface.php
│   │   │   └── ManagerInterface.php
│   │   ├── DeliverManager.php
│   │   ├── DomainManager.php
│   │   ├── EntryCommentManager.php
│   │   ├── EntryManager.php
│   │   ├── FactoryResolver.php
│   │   ├── FavouriteManager.php
│   │   ├── FeedManager.php
│   │   ├── GenerateHtmlClassService.php
│   │   ├── ImageManager.php
│   │   ├── ImageManagerInterface.php
│   │   ├── InstanceManager.php
│   │   ├── InstanceStatsManager.php
│   │   ├── IpResolver.php
│   │   ├── MagazineManager.php
│   │   ├── MentionManager.php
│   │   ├── MessageManager.php
│   │   ├── Monitor.php
│   │   ├── MonologFilterHandler.php
│   │   ├── Notification/
│   │   │   ├── EntryCommentNotificationManager.php
│   │   │   ├── EntryNotificationManager.php
│   │   │   ├── MagazineBanNotificationManager.php
│   │   │   ├── MessageNotificationManager.php
│   │   │   ├── NotificationTrait.php
│   │   │   ├── PostCommentNotificationManager.php
│   │   │   ├── PostNotificationManager.php
│   │   │   ├── ReportNotificationManager.php
│   │   │   ├── SignupNotificationManager.php
│   │   │   └── UserPushSubscriptionManager.php
│   │   ├── NotificationManager.php
│   │   ├── NotificationManagerTypeResolver.php
│   │   ├── OAuthTokenRevoker.php
│   │   ├── PeopleManager.php
│   │   ├── PostCommentManager.php
│   │   ├── PostManager.php
│   │   ├── ProjectInfoService.php
│   │   ├── RemoteInstanceManager.php
│   │   ├── ReportManager.php
│   │   ├── ReputationManager.php
│   │   ├── SearchManager.php
│   │   ├── SettingsManager.php
│   │   ├── StatsManager.php
│   │   ├── SubjectOverviewManager.php
│   │   ├── TagExtractor.php
│   │   ├── TagManager.php
│   │   ├── TwoFactorManager.php
│   │   ├── UserManager.php
│   │   ├── UserNoteManager.php
│   │   ├── UserSettingsManager.php
│   │   ├── VideoManager.php
│   │   ├── VotableRepositoryResolver.php
│   │   └── VoteManager.php
│   ├── Twig/
│   │   ├── Components/
│   │   │   ├── ActiveUsersComponent.php
│   │   │   ├── AnnouncementComponent.php
│   │   │   ├── BlurhashImageComponent.php
│   │   │   ├── BookmarkListComponent.php
│   │   │   ├── BookmarkMenuListComponent.php
│   │   │   ├── BookmarkStandardComponent.php
│   │   │   ├── BoostComponent.php
│   │   │   ├── CursorPaginationComponent.php
│   │   │   ├── DateComponent.php
│   │   │   ├── DateEditedComponent.php
│   │   │   ├── DomainComponent.php
│   │   │   ├── DomainSubComponent.php
│   │   │   ├── EditorToolbarComponent.php
│   │   │   ├── EntriesCrossComponent.php
│   │   │   ├── EntryCommentComponent.php
│   │   │   ├── EntryCommentInlineComponent.php
│   │   │   ├── EntryCommentsNestedComponent.php
│   │   │   ├── EntryComponent.php
│   │   │   ├── EntryCrossComponent.php
│   │   │   ├── EntryInlineComponent.php
│   │   │   ├── EntryInlineMdComponent.php
│   │   │   ├── FavouriteComponent.php
│   │   │   ├── FeaturedMagazinesComponent.php
│   │   │   ├── FilterListComponent.php
│   │   │   ├── InstanceList.php
│   │   │   ├── LoaderComponent.php
│   │   │   ├── LoginSocialsComponent.php
│   │   │   ├── MagazineBoxComponent.php
│   │   │   ├── MagazineInlineComponent.php
│   │   │   ├── MagazineSubComponent.php
│   │   │   ├── MonitoringTwigRenderComponent.php
│   │   │   ├── NotificationSwitch.php
│   │   │   ├── PostCombinedComponent.php
│   │   │   ├── PostCommentCombinedComponent.php
│   │   │   ├── PostCommentComponent.php
│   │   │   ├── PostCommentInlineComponent.php
│   │   │   ├── PostCommentsNestedComponent.php
│   │   │   ├── PostCommentsPreviewComponent.php
│   │   │   ├── PostComponent.php
│   │   │   ├── PostInlineMdComponent.php
│   │   │   ├── RelatedEntriesComponent.php
│   │   │   ├── RelatedMagazinesComponent.php
│   │   │   ├── RelatedPostsComponent.php
│   │   │   ├── ReportListComponent.php
│   │   │   ├── SettingsRowEnumComponent.php
│   │   │   ├── SettingsRowSwitchComponent.php
│   │   │   ├── SidebarSubscriptionComponent.php
│   │   │   ├── TagActionComponent.php
│   │   │   ├── UserActionsComponent.php
│   │   │   ├── UserAvatarComponent.php
│   │   │   ├── UserBoxComponent.php
│   │   │   ├── UserFormActionsComponent.php
│   │   │   ├── UserImageComponent.php
│   │   │   ├── UserInlineBoxComponent.php
│   │   │   ├── UserInlineComponent.php
│   │   │   ├── VoteComponent.php
│   │   │   └── VotersInlineComponent.php
│   │   ├── Extension/
│   │   │   ├── AdminExtension.php
│   │   │   ├── BookmarkExtension.php
│   │   │   ├── ContextExtension.php
│   │   │   ├── CounterExtension.php
│   │   │   ├── DomainExtension.php
│   │   │   ├── EmailExtension.php
│   │   │   ├── FormattingExtension.php
│   │   │   ├── FrontExtension.php
│   │   │   ├── LinkExtension.php
│   │   │   ├── MagazineExtension.php
│   │   │   ├── MediaExtension.php
│   │   │   ├── MonitorExtension.php
│   │   │   ├── NavbarExtension.php
│   │   │   ├── SettingsExtension.php
│   │   │   ├── SubjectExtension.php
│   │   │   ├── UrlExtension.php
│   │   │   └── UserExtension.php
│   │   └── Runtime/
│   │       ├── AdminExtensionRuntime.php
│   │       ├── BookmarkExtensionRuntime.php
│   │       ├── ContextExtensionRuntime.php
│   │       ├── CounterExtensionRuntime.php
│   │       ├── DomainExtensionRuntime.php
│   │       ├── EmailExtensionRuntime.php
│   │       ├── FormattingExtensionRuntime.php
│   │       ├── FrontExtensionRuntime.php
│   │       ├── LinkExtensionRuntime.php
│   │       ├── MagazineExtensionRuntime.php
│   │       ├── MediaExtensionRuntime.php
│   │       ├── NavbarExtensionRuntime.php
│   │       ├── SettingsExtensionRuntime.php
│   │       ├── SubjectExtensionRuntime.php
│   │       ├── UrlExtensionRuntime.php
│   │       └── UserExtensionRuntime.php
│   ├── Utils/
│   │   ├── AddErrorDetailsStampListener.php
│   │   ├── ArrayUtils.php
│   │   ├── DownvotesMode.php
│   │   ├── Embed.php
│   │   ├── ExifCleanMode.php
│   │   ├── ExifCleaner.php
│   │   ├── GeneralUtil.php
│   │   ├── ImageOrigin.php
│   │   ├── IriGenerator.php
│   │   ├── JsonldUtils.php
│   │   ├── RegPatterns.php
│   │   ├── Slugger.php
│   │   ├── SqlHelpers.php
│   │   ├── SubscriptionSort.php
│   │   ├── UrlCleaner.php
│   │   └── UrlUtils.php
│   └── Validator/
│       ├── NoSurroundingWhitespace.php
│       ├── NoSurroundingWhitespaceValidator.php
│       ├── Unique.php
│       └── UniqueValidator.php
├── templates/
│   ├── _email/
│   │   ├── application_approved.html.twig
│   │   ├── application_rejected.html.twig
│   │   ├── confirmation_email.html.twig
│   │   ├── contact.html.twig
│   │   ├── delete_account_request.html.twig
│   │   ├── email_base.html.twig
│   │   └── reset_pass_confirm.html.twig
│   ├── admin/
│   │   ├── _options.html.twig
│   │   ├── dashboard.html.twig
│   │   ├── deletion_magazines.html.twig
│   │   ├── deletion_users.html.twig
│   │   ├── federation.html.twig
│   │   ├── federation_defederate_instance.html.twig
│   │   ├── magazine_ownership.html.twig
│   │   ├── moderators.html.twig
│   │   ├── monitoring/
│   │   │   ├── _monitoring_single_options.html.twig
│   │   │   ├── _monitoring_single_overview.html.twig
│   │   │   ├── _monitoring_single_queries.html.twig
│   │   │   ├── _monitoring_single_requests.html.twig
│   │   │   ├── _monitoring_single_twig.html.twig
│   │   │   ├── monitoring.html.twig
│   │   │   └── monitoring_single.html.twig
│   │   ├── pages.html.twig
│   │   ├── reports.html.twig
│   │   ├── settings.html.twig
│   │   ├── signup_requests.html.twig
│   │   └── users.html.twig
│   ├── base.html.twig
│   ├── bookmark/
│   │   ├── _form_edit.html.twig
│   │   ├── _options.html.twig
│   │   ├── edit.html.twig
│   │   ├── front.html.twig
│   │   └── overview.html.twig
│   ├── bundles/
│   │   ├── NelmioApiDocBundle/
│   │   │   └── SwaggerUi/
│   │   │       └── index.html.twig
│   │   └── TwigBundle/
│   │       └── Exception/
│   │           ├── error.html.twig
│   │           ├── error403.html.twig
│   │           ├── error404.html.twig
│   │           ├── error429.html.twig
│   │           └── error500.html.twig
│   ├── components/
│   │   ├── _ajax.html.twig
│   │   ├── _cached.html.twig
│   │   ├── _comment_collapse_button.html.twig
│   │   ├── _details_label.css.twig
│   │   ├── _entry_comments_nested_hidden_private_threads.html.twig
│   │   ├── _figure_entry.html.twig
│   │   ├── _figure_image.html.twig
│   │   ├── _loading_icon.html.twig
│   │   ├── _post_comments_nested_hidden_private_threads.html.twig
│   │   ├── _settings_row_enum.html.twig
│   │   ├── _settings_row_switch.html.twig
│   │   ├── active_users.html.twig
│   │   ├── announcement.html.twig
│   │   ├── blurhash_image.html.twig
│   │   ├── bookmark_list.html.twig
│   │   ├── bookmark_menu_list.html.twig
│   │   ├── bookmark_standard.html.twig
│   │   ├── boost.html.twig
│   │   ├── cursor_pagination.html.twig
│   │   ├── date.html.twig
│   │   ├── date_edited.html.twig
│   │   ├── domain.html.twig
│   │   ├── domain_sub.html.twig
│   │   ├── editor_toolbar.html.twig
│   │   ├── entries_cross.html.twig
│   │   ├── entry.html.twig
│   │   ├── entry_comment.html.twig
│   │   ├── entry_comment_inline_md.html.twig
│   │   ├── entry_comments_nested.html.twig
│   │   ├── entry_cross.html.twig
│   │   ├── entry_inline.html.twig
│   │   ├── entry_inline_md.html.twig
│   │   ├── favourite.html.twig
│   │   ├── featured_magazines.html.twig
│   │   ├── filter_list.html.twig
│   │   ├── instance_list.html.twig
│   │   ├── loader.html.twig
│   │   ├── login_socials.html.twig
│   │   ├── magazine_box.html.twig
│   │   ├── magazine_inline.html.twig
│   │   ├── magazine_inline_md.html.twig
│   │   ├── magazine_sub.html.twig
│   │   ├── monitoring_twig_render.html.twig
│   │   ├── notification_switch.html.twig
│   │   ├── post.html.twig
│   │   ├── post_combined.html.twig
│   │   ├── post_comment.html.twig
│   │   ├── post_comment_combined.html.twig
│   │   ├── post_comment_inline_md.html.twig
│   │   ├── post_comments_nested.html.twig
│   │   ├── post_comments_preview.html.twig
│   │   ├── post_inline_md.html.twig
│   │   ├── related_entries.html.twig
│   │   ├── related_magazines.html.twig
│   │   ├── related_posts.html.twig
│   │   ├── report_list.html.twig
│   │   ├── tag_actions.html.twig
│   │   ├── user_actions.html.twig
│   │   ├── user_avatar.html.twig
│   │   ├── user_box.html.twig
│   │   ├── user_form_actions.html.twig
│   │   ├── user_image_component.html.twig
│   │   ├── user_inline.html.twig
│   │   ├── user_inline_box.html.twig
│   │   ├── user_inline_md.html.twig
│   │   ├── vote.html.twig
│   │   └── voters_inline.html.twig
│   ├── content/
│   │   ├── _list.html.twig
│   │   └── front.html.twig
│   ├── domain/
│   │   ├── _header_nav.html.twig
│   │   ├── _list.html.twig
│   │   ├── _options.html.twig
│   │   ├── comment/
│   │   │   └── front.html.twig
│   │   └── front.html.twig
│   ├── entry/
│   │   ├── _create_options.html.twig
│   │   ├── _form_edit.html.twig
│   │   ├── _form_entry.html.twig
│   │   ├── _info.html.twig
│   │   ├── _list.html.twig
│   │   ├── _menu.html.twig
│   │   ├── _moderate_panel.html.twig
│   │   ├── _options.html.twig
│   │   ├── _options_activity.html.twig
│   │   ├── comment/
│   │   │   ├── _form_comment.html.twig
│   │   │   ├── _list.html.twig
│   │   │   ├── _menu.html.twig
│   │   │   ├── _moderate_panel.html.twig
│   │   │   ├── _no_comments.html.twig
│   │   │   ├── _options.html.twig
│   │   │   ├── _options_activity.html.twig
│   │   │   ├── create.html.twig
│   │   │   ├── edit.html.twig
│   │   │   ├── favourites.html.twig
│   │   │   ├── front.html.twig
│   │   │   ├── moderate.html.twig
│   │   │   ├── view.html.twig
│   │   │   └── voters.html.twig
│   │   ├── create_entry.html.twig
│   │   ├── edit_entry.html.twig
│   │   ├── favourites.html.twig
│   │   ├── moderate.html.twig
│   │   ├── single.html.twig
│   │   └── voters.html.twig
│   ├── form/
│   │   └── lang_select.html.twig
│   ├── layout/
│   │   ├── _domain_activity_list.html.twig
│   │   ├── _flash.html.twig
│   │   ├── _form_media.html.twig
│   │   ├── _generic_subject_list.html.twig
│   │   ├── _header.html.twig
│   │   ├── _header_bread.html.twig
│   │   ├── _header_nav.html.twig
│   │   ├── _magazine_activity_list.html.twig
│   │   ├── _options_appearance.html.twig
│   │   ├── _options_font_size.html.twig
│   │   ├── _options_theme.html.twig
│   │   ├── _pagination.html.twig
│   │   ├── _sidebar.html.twig
│   │   ├── _subject.html.twig
│   │   ├── _subject_link.html.twig
│   │   ├── _subject_list.html.twig
│   │   ├── _topbar.html.twig
│   │   ├── _user_activity_list.html.twig
│   │   └── sidebar_subscriptions.html.twig
│   ├── magazine/
│   │   ├── _federated_info.html.twig
│   │   ├── _list.html.twig
│   │   ├── _moderators_list.html.twig
│   │   ├── _moderators_sidebar.html.twig
│   │   ├── _options.html.twig
│   │   ├── _restricted_info.html.twig
│   │   ├── _visibility_info.html.twig
│   │   ├── create.html.twig
│   │   ├── list_abandoned.html.twig
│   │   ├── list_all.html.twig
│   │   ├── moderators.html.twig
│   │   └── panel/
│   │       ├── _options.html.twig
│   │       ├── _stats_pills.html.twig
│   │       ├── badges.html.twig
│   │       ├── ban.html.twig
│   │       ├── bans.html.twig
│   │       ├── general.html.twig
│   │       ├── moderator_requests.html.twig
│   │       ├── moderators.html.twig
│   │       ├── reports.html.twig
│   │       ├── stats.html.twig
│   │       ├── tags.html.twig
│   │       ├── theme.html.twig
│   │       └── trash.html.twig
│   ├── messages/
│   │   ├── _form_create.html.twig
│   │   ├── front.html.twig
│   │   └── single.html.twig
│   ├── modlog/
│   │   ├── _blocks.html.twig
│   │   └── front.html.twig
│   ├── notifications/
│   │   ├── _blocks.html.twig
│   │   └── front.html.twig
│   ├── page/
│   │   ├── about.html.twig
│   │   ├── agent.html.twig
│   │   ├── contact.html.twig
│   │   ├── faq.html.twig
│   │   ├── federation.html.twig
│   │   ├── privacy_policy.html.twig
│   │   └── terms.html.twig
│   ├── people/
│   │   └── front.html.twig
│   ├── post/
│   │   ├── _form_post.html.twig
│   │   ├── _info.html.twig
│   │   ├── _list.html.twig
│   │   ├── _menu.html.twig
│   │   ├── _moderate_panel.html.twig
│   │   ├── _options.html.twig
│   │   ├── _options_activity.html.twig
│   │   ├── comment/
│   │   │   ├── _form_comment.html.twig
│   │   │   ├── _list.html.twig
│   │   │   ├── _menu.html.twig
│   │   │   ├── _moderate_panel.html.twig
│   │   │   ├── _no_comments.html.twig
│   │   │   ├── _options.html.twig
│   │   │   ├── _options_activity.html.twig
│   │   │   ├── _preview.html.twig
│   │   │   ├── create.html.twig
│   │   │   ├── edit.html.twig
│   │   │   ├── favourites.html.twig
│   │   │   ├── moderate.html.twig
│   │   │   └── voters.html.twig
│   │   ├── create.html.twig
│   │   ├── edit.html.twig
│   │   ├── favourites.html.twig
│   │   ├── moderate.html.twig
│   │   ├── single.html.twig
│   │   └── voters.html.twig
│   ├── report/
│   │   ├── _form_report.html.twig
│   │   └── create.html.twig
│   ├── resend_verification_email/
│   │   └── resend.html.twig
│   ├── reset_password/
│   │   ├── check_email.html.twig
│   │   ├── request.html.twig
│   │   └── reset.html.twig
│   ├── search/
│   │   ├── _emoji_suggestion.html.twig
│   │   ├── _list.html.twig
│   │   ├── _user_suggestion.html.twig
│   │   ├── form.html.twig
│   │   └── front.html.twig
│   ├── stats/
│   │   ├── _filters.html.twig
│   │   ├── _options.html.twig
│   │   ├── _stats_count.html.twig
│   │   └── front.html.twig
│   ├── styles/
│   │   └── custom.css.twig
│   ├── tag/
│   │   ├── _list.html.twig
│   │   ├── _options.html.twig
│   │   ├── _panel.html.twig
│   │   ├── comments.html.twig
│   │   ├── front.html.twig
│   │   ├── overview.html.twig
│   │   ├── people.html.twig
│   │   └── posts.html.twig
│   └── user/
│       ├── 2fa.html.twig
│       ├── _admin_panel.html.twig
│       ├── _boost_list.html.twig
│       ├── _federated_info.html.twig
│       ├── _info.html.twig
│       ├── _list.html.twig
│       ├── _options.html.twig
│       ├── _user_popover.html.twig
│       ├── _visibility_info.html.twig
│       ├── comments.html.twig
│       ├── consent.html.twig
│       ├── entries.html.twig
│       ├── followers.html.twig
│       ├── following.html.twig
│       ├── login.html.twig
│       ├── message.html.twig
│       ├── moderated.html.twig
│       ├── overview.html.twig
│       ├── posts.html.twig
│       ├── register.html.twig
│       ├── replies.html.twig
│       ├── reputation.html.twig
│       ├── settings/
│       │   ├── 2fa.html.twig
│       │   ├── 2fa_backup.html.twig
│       │   ├── 2fa_secret.html.twig
│       │   ├── _2fa_backup.html.twig
│       │   ├── _options.html.twig
│       │   ├── _stats_pills.html.twig
│       │   ├── account_deletion.html.twig
│       │   ├── block_domains.html.twig
│       │   ├── block_magazines.html.twig
│       │   ├── block_pills.html.twig
│       │   ├── block_users.html.twig
│       │   ├── email.html.twig
│       │   ├── filter_lists.html.twig
│       │   ├── filter_lists_create.html.twig
│       │   ├── filter_lists_edit.html.twig
│       │   ├── filter_lists_form.html.twig
│       │   ├── general.html.twig
│       │   ├── password.html.twig
│       │   ├── profile.html.twig
│       │   ├── reports.html.twig
│       │   ├── stats.html.twig
│       │   ├── sub_domains.html.twig
│       │   ├── sub_magazines.html.twig
│       │   ├── sub_pills.html.twig
│       │   └── sub_users.html.twig
│       └── subscriptions.html.twig
├── tests/
│   ├── ActivityPubJsonDriver.php
│   ├── ActivityPubTestCase.php
│   ├── FactoryTrait.php
│   ├── Functional/
│   │   ├── ActivityPub/
│   │   │   ├── ActivityPubFunctionalTestCase.php
│   │   │   ├── Inbox/
│   │   │   │   ├── AcceptHandlerTest.php
│   │   │   │   ├── AddHandlerTest.php
│   │   │   │   ├── BlockHandlerTest.php
│   │   │   │   ├── CreateHandlerTest.php
│   │   │   │   ├── DeleteHandlerTest.php
│   │   │   │   ├── DislikeHandlerTest.php
│   │   │   │   ├── FlagHandlerTest.php
│   │   │   │   ├── FollowHandlerTest.php
│   │   │   │   ├── LikeHandlerTest.php
│   │   │   │   ├── LockHandlerTest.php
│   │   │   │   ├── RemoveHandlerTest.php
│   │   │   │   └── UpdateHandlerTest.php
│   │   │   ├── MarkdownConverterTest.php
│   │   │   └── Outbox/
│   │   │       ├── BlockHandlerTest.php
│   │   │       ├── DeleteHandlerTest.php
│   │   │       └── LockHandlerTest.php
│   │   ├── Command/
│   │   │   ├── AdminCommandTest.php
│   │   │   ├── ModeratorCommandTest.php
│   │   │   └── UserCommandTest.php
│   │   ├── Controller/
│   │   │   ├── ActivityPub/
│   │   │   │   ├── GeneralAPTest.php
│   │   │   │   └── UserOutboxControllerTest.php
│   │   │   ├── Admin/
│   │   │   │   ├── AdminFederationControllerTest.php
│   │   │   │   └── AdminUserControllerTest.php
│   │   │   ├── Api/
│   │   │   │   ├── Bookmark/
│   │   │   │   │   ├── BookmarkApiTest.php
│   │   │   │   │   └── BookmarkListApiTest.php
│   │   │   │   ├── Combined/
│   │   │   │   │   ├── CombinedRetrieveApiCursoredTest.php
│   │   │   │   │   └── CombinedRetrieveApiTest.php
│   │   │   │   ├── Domain/
│   │   │   │   │   ├── DomainBlockApiTest.php
│   │   │   │   │   ├── DomainRetrieveApiTest.php
│   │   │   │   │   └── DomainSubscribeApiTest.php
│   │   │   │   ├── Entry/
│   │   │   │   │   ├── Admin/
│   │   │   │   │   │   ├── EntryChangeMagazineApiTest.php
│   │   │   │   │   │   └── EntryPurgeApiTest.php
│   │   │   │   │   ├── Comment/
│   │   │   │   │   │   ├── Admin/
│   │   │   │   │   │   │   └── EntryCommentPurgeApiTest.php
│   │   │   │   │   │   ├── DomainEntryCommentRetrieveApiTest.php
│   │   │   │   │   │   ├── EntryCommentCreateApiTest.php
│   │   │   │   │   │   ├── EntryCommentDeleteApiTest.php
│   │   │   │   │   │   ├── EntryCommentReportApiTest.php
│   │   │   │   │   │   ├── EntryCommentRetrieveApiTest.php
│   │   │   │   │   │   ├── EntryCommentUpdateApiTest.php
│   │   │   │   │   │   ├── EntryCommentVoteApiTest.php
│   │   │   │   │   │   ├── EntryCommentsActivityApiTest.php
│   │   │   │   │   │   ├── Moderate/
│   │   │   │   │   │   │   ├── EntryCommentSetAdultApiTest.php
│   │   │   │   │   │   │   ├── EntryCommentSetLanguageApiTest.php
│   │   │   │   │   │   │   └── EntryCommentTrashApiTest.php
│   │   │   │   │   │   └── UserEntryCommentRetrieveApiTest.php
│   │   │   │   │   ├── DomainEntryRetrieveApiTest.php
│   │   │   │   │   ├── EntriesActivityApiTest.php
│   │   │   │   │   ├── EntryCreateApiNewTest.php
│   │   │   │   │   ├── EntryCreateApiTest.php
│   │   │   │   │   ├── EntryDeleteApiTest.php
│   │   │   │   │   ├── EntryFavouriteApiTest.php
│   │   │   │   │   ├── EntryReportApiTest.php
│   │   │   │   │   ├── EntryRetrieveApiTest.php
│   │   │   │   │   ├── EntryUpdateApiTest.php
│   │   │   │   │   ├── EntryVoteApiTest.php
│   │   │   │   │   ├── MagazineEntryRetrieveApiTest.php
│   │   │   │   │   ├── Moderate/
│   │   │   │   │   │   ├── EntryLockApiTest.php
│   │   │   │   │   │   ├── EntryPinApiTest.php
│   │   │   │   │   │   ├── EntrySetAdultApiTest.php
│   │   │   │   │   │   ├── EntrySetLanguageApiTest.php
│   │   │   │   │   │   └── EntryTrashApiTest.php
│   │   │   │   │   └── UserEntryRetrieveApiTest.php
│   │   │   │   ├── Instance/
│   │   │   │   │   ├── Admin/
│   │   │   │   │   │   ├── InstanceFederationUpdateApiTest.php
│   │   │   │   │   │   ├── InstancePagesUpdateApiTest.php
│   │   │   │   │   │   ├── InstanceSettingsRetrieveApiTest.php
│   │   │   │   │   │   └── InstanceSettingsUpdateApiTest.php
│   │   │   │   │   ├── InstanceDetailsApiTest.php
│   │   │   │   │   ├── InstanceFederationApiTest.php
│   │   │   │   │   ├── InstanceModlogApiTest.php
│   │   │   │   │   └── InstanceRetrieveInfoApiTest.php
│   │   │   │   ├── Magazine/
│   │   │   │   │   ├── Admin/
│   │   │   │   │   │   ├── MagazineBadgesApiTest.php
│   │   │   │   │   │   ├── MagazineCreateApiTest.php
│   │   │   │   │   │   ├── MagazineDeleteApiTest.php
│   │   │   │   │   │   ├── MagazineDeleteIconApiTest.php
│   │   │   │   │   │   ├── MagazineModeratorsApiTest.php
│   │   │   │   │   │   ├── MagazinePurgeApiTest.php
│   │   │   │   │   │   ├── MagazineRetrieveStatsApiTest.php
│   │   │   │   │   │   ├── MagazineTagsApiTest.php
│   │   │   │   │   │   ├── MagazineUpdateApiTest.php
│   │   │   │   │   │   └── MagazineUpdateThemeApiTest.php
│   │   │   │   │   ├── MagazineBlockApiTest.php
│   │   │   │   │   ├── MagazineModlogApiTest.php
│   │   │   │   │   ├── MagazineRetrieveApiTest.php
│   │   │   │   │   ├── MagazineRetrieveThemeApiTest.php
│   │   │   │   │   ├── MagazineSubscribeApiTest.php
│   │   │   │   │   └── Moderate/
│   │   │   │   │       ├── MagazineActionReportsApiTest.php
│   │   │   │   │       ├── MagazineBanApiTest.php
│   │   │   │   │       ├── MagazineModOwnerRequestApiTest.php
│   │   │   │   │       ├── MagazineRetrieveBansApiTest.php
│   │   │   │   │       ├── MagazineRetrieveReportsApiTest.php
│   │   │   │   │       └── MagazineRetrieveTrashApiTest.php
│   │   │   │   ├── Message/
│   │   │   │   │   ├── MessageReadApiTest.php
│   │   │   │   │   ├── MessageRetrieveApiTest.php
│   │   │   │   │   ├── MessageThreadCreateApiTest.php
│   │   │   │   │   └── MessageThreadReplyApiTest.php
│   │   │   │   ├── Notification/
│   │   │   │   │   ├── AdminNotificationRetrieveApiTest.php
│   │   │   │   │   ├── NotificationDeleteApiTest.php
│   │   │   │   │   ├── NotificationReadApiTest.php
│   │   │   │   │   ├── NotificationRetrieveApiTest.php
│   │   │   │   │   └── NotificationUpdateApiTest.php
│   │   │   │   ├── OAuth2/
│   │   │   │   │   └── OAuth2ClientApiTest.php
│   │   │   │   ├── Post/
│   │   │   │   │   ├── Admin/
│   │   │   │   │   │   └── PostPurgeApiTest.php
│   │   │   │   │   ├── Comment/
│   │   │   │   │   │   ├── Admin/
│   │   │   │   │   │   │   └── PostCommentPurgeApiTest.php
│   │   │   │   │   │   ├── Moderate/
│   │   │   │   │   │   │   ├── PostCommentSetAdultApiTest.php
│   │   │   │   │   │   │   ├── PostCommentSetLanguageApiTest.php
│   │   │   │   │   │   │   └── PostCommentTrashApiTest.php
│   │   │   │   │   │   ├── PostCommentCreateApiTest.php
│   │   │   │   │   │   ├── PostCommentDeleteApiTest.php
│   │   │   │   │   │   ├── PostCommentReportApiTest.php
│   │   │   │   │   │   ├── PostCommentRetrieveApiTest.php
│   │   │   │   │   │   ├── PostCommentUpdateApiTest.php
│   │   │   │   │   │   ├── PostCommentVoteApiTest.php
│   │   │   │   │   │   ├── PostCommentsActivityApiTest.php
│   │   │   │   │   │   └── UserPostCommentRetrieveApiTest.php
│   │   │   │   │   ├── MagazinePostRetrieveApiTest.php
│   │   │   │   │   ├── Moderate/
│   │   │   │   │   │   ├── PostLockApiTest.php
│   │   │   │   │   │   ├── PostPinApiTest.php
│   │   │   │   │   │   ├── PostSetAdultApiTest.php
│   │   │   │   │   │   ├── PostSetLanguageApiTest.php
│   │   │   │   │   │   └── PostTrashApiTest.php
│   │   │   │   │   ├── PostCreateApiTest.php
│   │   │   │   │   ├── PostDeleteApiTest.php
│   │   │   │   │   ├── PostFavouriteApiTest.php
│   │   │   │   │   ├── PostReportApiTest.php
│   │   │   │   │   ├── PostRetrieveApiTest.php
│   │   │   │   │   ├── PostUpdateApiTest.php
│   │   │   │   │   ├── PostVoteApiTest.php
│   │   │   │   │   ├── PostsActivityApiTest.php
│   │   │   │   │   └── UserPostRetrieveApiTest.php
│   │   │   │   ├── Search/
│   │   │   │   │   └── SearchApiTest.php
│   │   │   │   └── User/
│   │   │   │       ├── Admin/
│   │   │   │       │   ├── UserBanApiTest.php
│   │   │   │       │   ├── UserDeleteApiTest.php
│   │   │   │       │   ├── UserPurgeApiTest.php
│   │   │   │       │   ├── UserRetrieveBannedApiTest.php
│   │   │   │       │   └── UserVerifyApiTest.php
│   │   │   │       ├── UserBlockApiTest.php
│   │   │   │       ├── UserContentApiTest.php
│   │   │   │       ├── UserFilterListApiTest.php
│   │   │   │       ├── UserFollowApiTest.php
│   │   │   │       ├── UserModeratesApiTest.php
│   │   │   │       ├── UserRetrieveApiTest.php
│   │   │   │       ├── UserRetrieveOAuthConsentsApiTest.php
│   │   │   │       ├── UserUpdateApiTest.php
│   │   │   │       ├── UserUpdateImagesApiTest.php
│   │   │   │       └── UserUpdateOAuthConsentsApiTest.php
│   │   │   ├── Domain/
│   │   │   │   ├── DomainBlockControllerTest.php
│   │   │   │   ├── DomainCommentFrontControllerTest.php
│   │   │   │   ├── DomainFrontControllerTest.php
│   │   │   │   └── DomainSubControllerTest.php
│   │   │   ├── Entry/
│   │   │   │   ├── Comment/
│   │   │   │   │   ├── EntryCommentBoostControllerTest.php
│   │   │   │   │   ├── EntryCommentChangeLangControllerTest.php
│   │   │   │   │   ├── EntryCommentCreateControllerTest.php
│   │   │   │   │   ├── EntryCommentDeleteControllerTest.php
│   │   │   │   │   ├── EntryCommentEditControllerTest.php
│   │   │   │   │   ├── EntryCommentFrontControllerTest.php
│   │   │   │   │   └── EntryCommentModerateControllerTest.php
│   │   │   │   ├── EntryBoostControllerTest.php
│   │   │   │   ├── EntryChangeAdultControllerTest.php
│   │   │   │   ├── EntryChangeLangControllerTest.php
│   │   │   │   ├── EntryChangeMagazineControllerTest.php
│   │   │   │   ├── EntryCreateControllerTest.php
│   │   │   │   ├── EntryDeleteControllerTest.php
│   │   │   │   ├── EntryEditControllerTest.php
│   │   │   │   ├── EntryFrontControllerTest.php
│   │   │   │   ├── EntryLockControllerTest.php
│   │   │   │   ├── EntryModerateControllerTest.php
│   │   │   │   ├── EntryPinControllerTest.php
│   │   │   │   ├── EntrySingleControllerTest.php
│   │   │   │   └── EntryVotersControllerTest.php
│   │   │   ├── Magazine/
│   │   │   │   ├── MagazineBlockControllerTest.php
│   │   │   │   ├── MagazineCreateControllerTest.php
│   │   │   │   ├── MagazineListControllerTest.php
│   │   │   │   ├── MagazinePeopleControllerTest.php
│   │   │   │   ├── MagazineSubControllerTest.php
│   │   │   │   └── Panel/
│   │   │   │       ├── MagazineAppearanceControllerTest.php
│   │   │   │       ├── MagazineBadgeControllerTest.php
│   │   │   │       ├── MagazineBanControllerTest.php
│   │   │   │       ├── MagazineEditControllerTest.php
│   │   │   │       ├── MagazineModeratorControllerTest.php
│   │   │   │       ├── MagazineReportControllerTest.php
│   │   │   │       └── MagazineTrashControllerTest.php
│   │   │   ├── Moderator/
│   │   │   │   └── ModeratorSignupRequestsControllerTest.php
│   │   │   ├── People/
│   │   │   │   └── FrontControllerTest.php
│   │   │   ├── Post/
│   │   │   │   ├── Comment/
│   │   │   │   │   ├── PostCommentBoostControllerTest.php
│   │   │   │   │   ├── PostCommentChangeLangControllerTest.php
│   │   │   │   │   ├── PostCommentCreateControllerTest.php
│   │   │   │   │   ├── PostCommentDeleteControllerTest.php
│   │   │   │   │   ├── PostCommentEditControllerTest.php
│   │   │   │   │   └── PostCommentModerateControllerTest.php
│   │   │   │   ├── PostBoostControllerTest.php
│   │   │   │   ├── PostChangeAdultControllerTest.php
│   │   │   │   ├── PostChangeLangControllerTest.php
│   │   │   │   ├── PostChangeMagazineControllerTest.php
│   │   │   │   ├── PostCreateControllerTest.php
│   │   │   │   ├── PostDeleteControllerTest.php
│   │   │   │   ├── PostEditControllerTest.php
│   │   │   │   ├── PostFrontControllerTest.php
│   │   │   │   ├── PostLockControllerTest.php
│   │   │   │   ├── PostModerateControllerTest.php
│   │   │   │   ├── PostPinControllerTest.php
│   │   │   │   ├── PostSingleControllerTest.php
│   │   │   │   └── PostVotersControllerTest.php
│   │   │   ├── PrivacyPolicyControllerTest.php
│   │   │   ├── ReportControllerControllerTest.php
│   │   │   ├── Security/
│   │   │   │   ├── LoginControllerTest.php
│   │   │   │   ├── OAuth2ConsentControllerTest.php
│   │   │   │   ├── OAuth2TokenControllerTest.php
│   │   │   │   └── RegisterControllerTest.php
│   │   │   ├── TermsControllerTest.php
│   │   │   ├── User/
│   │   │   │   ├── Admin/
│   │   │   │   │   └── UserDeleteControllerTest.php
│   │   │   │   ├── Profile/
│   │   │   │   │   ├── UserBlockControllerTest.php
│   │   │   │   │   ├── UserEditControllerTest.php
│   │   │   │   │   ├── UserNotificationControllerTest.php
│   │   │   │   │   └── UserSubControllerTest.php
│   │   │   │   ├── UserBlockControllerTest.php
│   │   │   │   ├── UserFollowControllerTest.php
│   │   │   │   └── UserFrontControllerTest.php
│   │   │   ├── VoteControllerTest.php
│   │   │   └── WebfingerControllerTest.php
│   │   └── Misc/
│   │       └── Entry/
│   │           └── CrosspostDetectionTest.php
│   ├── OAuth2FlowTrait.php
│   ├── Service/
│   │   ├── TestingApHttpClient.php
│   │   └── TestingImageManager.php
│   ├── Unit/
│   │   ├── ActivityPub/
│   │   │   ├── ActorHandleTest.php
│   │   │   ├── CollectionExtractionTest.php
│   │   │   ├── Outbox/
│   │   │   │   ├── AddHandlerTest.php
│   │   │   │   ├── AnnounceTest.php
│   │   │   │   ├── BlockTest.php
│   │   │   │   ├── CreateTest.php
│   │   │   │   ├── DeleteTest.php
│   │   │   │   ├── FlagTest.php
│   │   │   │   ├── FollowTest.php
│   │   │   │   ├── JsonSnapshots/
│   │   │   │   │   ├── AddHandlerTest__testAddModerator__1.json
│   │   │   │   │   ├── AddHandlerTest__testAddPinnedPost__1.json
│   │   │   │   │   ├── AddHandlerTest__testRemoveModerator__1.json
│   │   │   │   │   ├── AddHandlerTest__testRemovePinnedPost__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceAddModerator__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceAddPinnedPost__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceBlockUser__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceCreateEntryComment__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceCreateEntry__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceCreateMessage__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceCreateNestedEntryComment__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceCreateNestedPostComment__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceCreatePostComment__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceCreatePost__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceDeleteEntryByModerator__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceDeleteEntryCommentByModerator__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceDeleteEntryComment__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceDeleteEntry__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceDeletePostByModerator__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceDeletePostCommentByModerator__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceDeletePostComment__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceDeletePost__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceDeleteUser__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceLikeEntryComment__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceLikeEntry__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceLikeNestedEntryComment__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceLikeNestedPostComment__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceLikePostComment__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceLikePost__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceRemoveModerator__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceRemovePinnedPost__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceUndoBlockUser__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceUndoLikeEntryComment__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceUndoLikeEntry__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceUndoLikeNestedEntryComment__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceUndoLikeNestedPostComment__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceUndoLikePostComment__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceUndoLikePost__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceUpdateEntryComment__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceUpdateEntry__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceUpdateMagazine__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceUpdatePostComment__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceUpdatePost__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceUpdateUser__1.json
│   │   │   │   │   ├── AnnounceTest__testMagazineBoostEntryComment__1.json
│   │   │   │   │   ├── AnnounceTest__testMagazineBoostEntry__1.json
│   │   │   │   │   ├── AnnounceTest__testMagazineBoostNestedEntryComment__1.json
│   │   │   │   │   ├── AnnounceTest__testMagazineBoostNestedPostComment__1.json
│   │   │   │   │   ├── AnnounceTest__testMagazineBoostPostComment__1.json
│   │   │   │   │   ├── AnnounceTest__testMagazineBoostPost__1.json
│   │   │   │   │   ├── AnnounceTest__testUserBoostEntryComment__1.json
│   │   │   │   │   ├── AnnounceTest__testUserBoostEntry__1.json
│   │   │   │   │   ├── AnnounceTest__testUserBoostNestedEntryComment__1.json
│   │   │   │   │   ├── AnnounceTest__testUserBoostNestedPostComment__1.json
│   │   │   │   │   ├── AnnounceTest__testUserBoostPostComment__1.json
│   │   │   │   │   ├── AnnounceTest__testUserBoostPost__1.json
│   │   │   │   │   ├── BlockTest__testBlockUser__1.json
│   │   │   │   │   ├── CreateTest__testCreateEntryComment__1.json
│   │   │   │   │   ├── CreateTest__testCreateEntryWithUrlAndImage__1.json
│   │   │   │   │   ├── CreateTest__testCreateEntry__1.json
│   │   │   │   │   ├── CreateTest__testCreateMessage__1.json
│   │   │   │   │   ├── CreateTest__testCreateNestedEntryComment__1.json
│   │   │   │   │   ├── CreateTest__testCreateNestedPostComment__1.json
│   │   │   │   │   ├── CreateTest__testCreatePostComment__1.json
│   │   │   │   │   ├── CreateTest__testCreatePost__1.json
│   │   │   │   │   ├── DeleteTest__testDeleteEntryByModerator__1.json
│   │   │   │   │   ├── DeleteTest__testDeleteEntryCommentByModerator__1.json
│   │   │   │   │   ├── DeleteTest__testDeleteEntryComment__1.json
│   │   │   │   │   ├── DeleteTest__testDeleteEntry__1.json
│   │   │   │   │   ├── DeleteTest__testDeletePostByModerator__1.json
│   │   │   │   │   ├── DeleteTest__testDeletePostCommentByModerator__1.json
│   │   │   │   │   ├── DeleteTest__testDeletePostComment__1.json
│   │   │   │   │   ├── DeleteTest__testDeletePost__1.json
│   │   │   │   │   ├── DeleteTest__testDeleteUser__1.json
│   │   │   │   │   ├── FlagTest__testFlagEntryComment__1.json
│   │   │   │   │   ├── FlagTest__testFlagEntry__1.json
│   │   │   │   │   ├── FlagTest__testFlagNestedEntryComment__1.json
│   │   │   │   │   ├── FlagTest__testFlagNestedPostComment__1.json
│   │   │   │   │   ├── FlagTest__testFlagPostComment__1.json
│   │   │   │   │   ├── FlagTest__testFlagPost__1.json
│   │   │   │   │   ├── FollowTest__testAcceptFollowMagazine__1.json
│   │   │   │   │   ├── FollowTest__testAcceptFollowUser__1.json
│   │   │   │   │   ├── FollowTest__testFollowMagazine__1.json
│   │   │   │   │   ├── FollowTest__testFollowUser__1.json
│   │   │   │   │   ├── FollowTest__testRejectFollowMagazine__1.json
│   │   │   │   │   ├── FollowTest__testRejectFollowUser__1.json
│   │   │   │   │   ├── LikeTest__testLikeEntryComment__1.json
│   │   │   │   │   ├── LikeTest__testLikeEntry__1.json
│   │   │   │   │   ├── LikeTest__testLikeNestedEntryComment__1.json
│   │   │   │   │   ├── LikeTest__testLikeNestedPostComment__1.json
│   │   │   │   │   ├── LikeTest__testLikePostComment__1.json
│   │   │   │   │   ├── LikeTest__testLikePost__1.json
│   │   │   │   │   ├── LockTest__testLockEntryByAuthor__1.json
│   │   │   │   │   ├── LockTest__testLockEntryByModerator__1.json
│   │   │   │   │   ├── LockTest__testLockPostByAuthor__1.json
│   │   │   │   │   ├── LockTest__testLockPostByModerator__1.json
│   │   │   │   │   ├── UndoTest__testUndoBlockUser__1.json
│   │   │   │   │   ├── UndoTest__testUndoFollowMagazine__1.json
│   │   │   │   │   ├── UndoTest__testUndoFollowUser__1.json
│   │   │   │   │   ├── UndoTest__testUndoLikeEntryComment__1.json
│   │   │   │   │   ├── UndoTest__testUndoLikeEntry__1.json
│   │   │   │   │   ├── UndoTest__testUndoLikeNestedEntryComment__1.json
│   │   │   │   │   ├── UndoTest__testUndoLikeNestedPostComment__1.json
│   │   │   │   │   ├── UndoTest__testUndoLikePostComment__1.json
│   │   │   │   │   ├── UndoTest__testUndoLikePost__1.json
│   │   │   │   │   ├── UpdateTest__testUpdateEntryComment__1.json
│   │   │   │   │   ├── UpdateTest__testUpdateEntry__1.json
│   │   │   │   │   ├── UpdateTest__testUpdateMagazine__1.json
│   │   │   │   │   ├── UpdateTest__testUpdatePostComment__1.json
│   │   │   │   │   ├── UpdateTest__testUpdatePost__1.json
│   │   │   │   │   └── UpdateTest__testUpdateUser__1.json
│   │   │   │   ├── LikeTest.php
│   │   │   │   ├── LockTest.php
│   │   │   │   ├── UndoTest.php
│   │   │   │   └── UpdateTest.php
│   │   │   ├── TagMatchTest.php
│   │   │   └── Traits/
│   │   │       ├── AddRemoveActivityGeneratorTrait.php
│   │   │       ├── AnnounceActivityGeneratorTrait.php
│   │   │       ├── BlockActivityGeneratorTrait.php
│   │   │       ├── CreateActivityGeneratorTrait.php
│   │   │       ├── DeleteActivityGeneratorTrait.php
│   │   │       ├── FlagActivityGeneratorTrait.php
│   │   │       ├── FollowActivityGeneratorTrait.php
│   │   │       ├── LikeActivityGeneratorTrait.php
│   │   │       ├── LockActivityGeneratorTrait.php
│   │   │       ├── UndoActivityGeneratorTrait.php
│   │   │       └── UpdateActivityGeneratorTrait.php
│   │   ├── CursorPaginationTest.php
│   │   ├── Service/
│   │   │   ├── ActivityPub/
│   │   │   │   └── SignatureValidatorTest.php
│   │   │   ├── MentionManagerTest.php
│   │   │   ├── MonitoringParameterEncodingTest.php
│   │   │   ├── SettingsManagerTest.php
│   │   │   └── TagExtractorTest.php
│   │   ├── TwigRuntime/
│   │   │   └── FormattingExtensionRuntimeTest.php
│   │   └── Utils/
│   │       ├── ArrayUtilTest.php
│   │       ├── GeneralUtilTest.php
│   │       ├── MarkdownTest.php
│   │       └── SluggerTest.php
│   ├── ValidationTrait.php
│   ├── WebTestCase.php
│   └── bootstrap.php
├── tools/
│   └── composer.json
├── translations/
│   ├── .gitignore
│   ├── messages.an.yaml
│   ├── messages.ast.yaml
│   ├── messages.bg.yaml
│   ├── messages.ca.yaml
│   ├── messages.ca@valencia.yaml
│   ├── messages.da.yaml
│   ├── messages.de.yaml
│   ├── messages.el.yaml
│   ├── messages.en.yaml
│   ├── messages.eo.yaml
│   ├── messages.es.yaml
│   ├── messages.et.yaml
│   ├── messages.eu.yaml
│   ├── messages.fi.yaml
│   ├── messages.fil.yaml
│   ├── messages.fr.yaml
│   ├── messages.gl.yaml
│   ├── messages.gsw.yaml
│   ├── messages.it.yaml
│   ├── messages.ja.yaml
│   ├── messages.nb_NO.yaml
│   ├── messages.nl.yaml
│   ├── messages.pl.yaml
│   ├── messages.pt.yaml
│   ├── messages.pt_BR.yaml
│   ├── messages.ru.yaml
│   ├── messages.sv.yaml
│   ├── messages.ta.yaml
│   ├── messages.tr.yaml
│   ├── messages.uk.yaml
│   ├── messages.zh_Hans.yaml
│   ├── messages.zh_TW.yaml
│   └── security.en.yaml
└── webpack.config.js

================================================
FILE CONTENTS
================================================

================================================
FILE: .devcontainer/apache-vhost.conf
================================================
ServerName 127.0.0.1
<VirtualHost *:8080>
    # The ServerName directive sets the request scheme, hostname and port that
    # the server uses to identify itself. This is used when creating
    # redirection URLs. In the context of virtual hosts, the ServerName
    # specifies what hostname must appear in the request's Host: header to
    # match this virtual host. For the default virtual host (this file) this
    # value is not decisive as it is used as a last resort host regardless.
    # However, you must set it for any further virtual host explicitly.
    #ServerName www.example.com

    ServerAdmin webmaster@localhost
    DocumentRoot /var/www/html/public

    # Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
    # error, crit, alert, emerg.
    # It is also possible to configure the loglevel for particular
    # modules, e.g.
    #LogLevel info ssl:warn

    ErrorLog ${APACHE_LOG_DIR}/error.log
    CustomLog ${APACHE_LOG_DIR}/access.log combined

    # For most configuration files from conf-available/, which are
    # enabled or disabled at a global level, it is possible to
    # include a line for only one particular virtual host. For example the
    # following line enables the CGI configuration for this host only
    # after it has been globally disabled with "a2disconf".
    #Include conf-available/serve-cgi-bin.conf

    <Directory /var/www/html/public>
        AllowOverride None
        Require all granted
        FallbackResource /index.php
        DirectoryIndex index.php

        # Disabling MultiViews prevents unwanted negotiation, e.g. "/index" should not resolve
        # to the front controller "/index.php" but be rewritten to "/index.php/index".
        <IfModule mod_negotiation.c>
            Options -MultiViews
        </IfModule>

        <IfModule mod_rewrite.c>
            RewriteEngine On

            # This RewriteRule is used to dynamically discover the RewriteBase path.
            # See https://httpd.apache.org/docs/current/mod/mod_rewrite.html#rewriterule
            # Here we will compare the stripped per-dir path *relative to the filesystem
            # path where the .htaccess file is read from* with the URI of the request.
            #
            # If a match is found, the prefix path is stored into an ENV var that is later
            # used to properly prefix the URI of the front controller index.php.
            # This is what makes it possible to host a Symfony application under a subpath,
            # such as example.com/subpath

            # The convoluted rewrite condition means:
            #   1. Match all current URI in the RewriteRule and backreference it using $0
            #   2. Strip the request uri the per-dir path and use ir as REQUEST_URI.
            #      This is documented in https://bit.ly/3zDm3SI ("What is matched?")
            #   3. Evaluate the RewriteCond, assuming your DocumentRoot is /var/www/html,
            #      this .htaccess is in the /var/www/html/public dir and your request URI
            #      is /public/hello/world:
            #      * strip per-dir prefix: /var/www/html/public/hello/world -> hello/world
            #      * applying pattern '.*' to uri 'hello/world'
            #      * RewriteCond: input='/public/hello/world::hello/world' pattern='^(/.+)/(.*)::\\2$' => matched
            #   4. Execute the RewriteRule:
            #      * The %1 in the RewriteRule flag E=BASE:%1 refers to the first group captured in the RewriteCond ^(/.+)/(.*)
            #      * setting env variable 'BASE' to '/public'
            RewriteCond %{REQUEST_URI}::$0 ^(/.+)/(.*)::\2$
            RewriteRule .* - [E=BASE:%1]

            # Sets the HTTP_AUTHORIZATION header removed by Apache
            RewriteCond %{HTTP:Authorization} .+
            RewriteRule ^ - [E=HTTP_AUTHORIZATION:%0]

            # Removes the /index.php/ part from a URL, if present
            RewriteCond %{ENV:REDIRECT_STATUS} ^$
            RewriteRule ^index\.php(?:/(.*)|$) %{ENV:BASE}/$1 [R=301,L]

            # If the requested filename exists, simply serve it.
            # Otherwise rewrite all other queries to the front controller.
            RewriteCond %{REQUEST_FILENAME} !-f
            RewriteRule ^ %{ENV:BASE}/index.php [L]
        </IfModule>
    </Directory>
</VirtualHost>

# vim: syntax=apache ts=4 sw=4 sts=4 sr noet


================================================
FILE: .devcontainer/devcontainer.json
================================================
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/php
{
    "name": "PHP",
    // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
    "image": "mcr.microsoft.com/devcontainers/php:3.0.3-8.4-trixie",

    // Features to add to the dev container. More info: https://containers.dev/features.
    "features": {
        "ghcr.io/yassinedoghri/devcontainers/php-extensions-installer:1": {
            "extensions": "amqp apcu bcmath exif gd intl opcache pcntl pdo_pgsql pgsql redis"
        },
        "ghcr.io/devcontainers/features/github-cli:1": {},
        "ghcr.io/devcontainers/features/node:1": {
            "version": "latest"
        },
        "ghcr.io/itsmechlark/features/postgresql:1": {
            "version": "18"
        },
        "ghcr.io/itsmechlark/features/rabbitmq-server:1": {},
        "ghcr.io/itsmechlark/features/redis-server:1": {}
    },

    // Configure tool-specific properties.
    "customizations": {
        // Configure properties specific to VS Code.
        "vscode": {
            "extensions": [
                "christian-kohler.npm-intellisense",
                "christian-kohler.path-intellisense",
                "editorconfig.editorconfig",
                "ikappas.composer",
                "junstyle.php-cs-fixer",
                "marcoroth.stimulus-lsp",
                "mblode.twig-language",
                "mikestead.dotenv",
                "ms-azuretools.vscode-docker",
                "neilbrayfield.php-docblocker",
                "recca0120.vscode-phpunit",
                "redhat.vscode-yaml",
                "sanderronde.phpstan-vscode"
            ],
            "settings": {
                "javascript.suggest.paths": false,
                "typescript.suggest.paths": false,
                "pgsql.connections": [
                    {
                        "server": "127.0.0.1",
                        "database": "postgres",
                        "user": "postgres",
                        "password": ""
                    }
                ]
            }
        }
    },

    // Use 'forwardPorts' to make a list of ports inside the container available locally.
    "forwardPorts": [
        8080
    ],

    // Use 'postCreateCommand' to run commands after the container is created.
    "postCreateCommand": {
        "webdir": "sudo chmod a+x \"$(pwd)\" && sudo rm -rf /var/www/html && sudo ln -s \"$(pwd)\" /var/www/html",
        "deps": "if [ -f composer.json ]; then composer install; fi",
        "config": "cp .devcontainer/.env.devcontainer .env",
        "apache": "sudo sed -i 's/Listen 80$//' /etc/apache2/ports.conf && sudo cp .devcontainer/apache-vhost.conf /etc/apache2/sites-enabled/000-default.conf && sudo a2enmod rewrite",
        "phpconf": "sudo cp .devcontainer/php_config.ini /usr/local/etc/php/conf.d/custom.ini",
        "symfony": "wget https://get.symfony.com/cli/installer -O - | bash && sudo mv ~/.symfony5/bin/symfony /usr/local/bin/symfony"
    }

    // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
    // "remoteUser": "root"

    // Uncomment if you are using Podman
    //runArgs: [
    //    "--userns=keep-id",
    //    "--security-opt=label=disable"
    //],
    //"updateRemoteUserUID": true
}


================================================
FILE: .devcontainer/php_config.ini
================================================
memory_limit = 1G
max_execution_time = 60


================================================
FILE: .dockerignore
================================================
**/*.log
**/*.md
**/*.php~
**/*.dist.php
**/*.dist
**/*.cache
**/._*
**/.dockerignore
**/.DS_Store
**/.git/
**/.gitattributes
**/.gitignore
**/.gitmodules
**/compose.*.yaml
**/compose.yaml
**/Dockerfile
**/Thumbs.db
.github/
storage/
docs/
public/bundles/
tests/
tools/
var/
vendor/
.vs/
.editorconfig
.env.*.local
.env.local
.env.local.php
.env.test
.env
Dockerfile


================================================
FILE: .editorconfig
================================================
root = true

[*]
charset = utf-8
end_of_line = lf
indent_size = 4
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true

[*.php]
indent_style = space
indent_size = 4

[*.twig]
indent_style = space
indent_size = 4

[*.js]
indent_style = space
indent_size = 4

[*.{css,scss}]
indent_style = space
indent_size = 2

[*.json]
indent_style = space
indent_size = 4

[*.yaml]
indent_style = space
indent_size = 4
quote_type = single

[*.md]
trim_trailing_whitespace = false

[{compose.yaml,compose.*.yaml}]
indent_size = 2

[translations/*.yaml]
indent_style = space
indent_size = 2
quote_type = single

[.github/workflows/*.yaml]
indent_style = space
indent_size = 2
quote_type = single


================================================
FILE: .github/ISSUE_TEMPLATE/bug_report.md
================================================
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: ['bug']
assignees: ''

---

**Describe the bug**
A clear and concise description of what the bug is.

**On which Mbin instance did you find the bug?**
[domain.tld]

**Which Mbin version was running on the instance?**
[e.g. 1.7.4]

**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error

**Expected behavior**
A clear and concise description of what you expected to happen.

**Screenshots**
If applicable, add screenshots to help explain your problem.

**Desktop (please complete the following information):**
 - OS: [e.g. iOS]
 - Browser: [e.g. chrome, safari]
 - Browser Version: [e.g. 123]

**Smartphone (please complete the following information):**
 - Device: [e.g. iPhone6]
 - OS: [e.g. iOS8.1]
 - Browser: [e.g. stock browser, safari]
 - Browser Version: [e.g. 123]

**Additional context**
Add any other context about the problem here.


================================================
FILE: .github/ISSUE_TEMPLATE/feature_request.md
================================================
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: ['enhancement']
assignees: ''

---

<!--- If you are considering creating a new feature request, also consider to become a contributor and create pull requests! 
We are all volunteers, we need developers who implement all the features. --->

**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

**Describe the solution you'd like**
A clear and concise description of what you want to happen.

**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.

**Additional context**
Add any other context or screenshots about the feature request here.


================================================
FILE: .github/PULL_REQUEST_TEMPLATE/pull_request_template.md
================================================
<!-- This is a comment. You can remove it and other comments while filling out the template -->

# Summary

<!-- 
Please provide a **short** summary in a few sentences of what the PR does.
Try to keep it to as few full sentences as possible.
-->

## Checklist

<!--
Points that don't don't apply can simply be checked off.
Feel free to add **N/A** for clarity.

Example:

  - [x] Added tests (for code changes) **N/A**
-->

 - [ ] Marked as draft PR while still working on PR
 - [ ] Marked as "ready for review" once not in progress
 - [ ] Added tests (for code changes)
 - [ ] Provided screenshots (for visual changes)


# Additional information

<!--
In this section you can describe more in depth:

 - **why** you made it
 - **how** it achieves its goals

====================Screenshots=====================
If your PR is visual **provide screenshots**!
It makes it much easier for reviewers to evaluate your work

Copy this table out of the comment:

|     Before   |    After    |
| ------------ | ----------- |
| image_before | image_after |
-->

# Related issues

<!-- 
If your PR resolves and existing issue, please link to it in this section.

Example:

  Resolves #1234

Should it not be related to any issue just with "N/A" or "Not applicable"
-->


================================================
FILE: .github/dependabot.yml
================================================
# Inspired by: https://github.com/dependabot/dependabot-core/blob/main/.github/dependabot.yml
# Please see the documentation for all configuration options:
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file

version: 2
updates:
  - package-ecosystem: "npm"
    directory: "/"
    schedule:
      interval: "weekly"
      day: "saturday"
      time: "14:00"
    groups:
      npm:
        applies-to: security-updates
        update-types:
          - "minor"
          - "patch"
  - package-ecosystem: "composer"
    directory: "/"
    schedule:
      interval: "weekly"
      day: "saturday"
      time: "14:00"
    groups:
      php:
        applies-to: security-updates
        update-types:
          - "minor"
          - "patch"
  - package-ecosystem: "devcontainers"
    directory: "/"
    schedule:
      interval: "weekly"
      day: "saturday"
      time: "14:00"
    groups:
      devcontainers:
        applies-to: security-updates
        update-types:
          - "minor"
          - "patch"


================================================
FILE: .github/workflows/action.yaml
================================================
name: Mbin Workflow
on:
  pull_request:
    branches:
      - main
      - develop
      - dev/new_features
  push:
    branches:
      - main
      - dev/new_features
    tags:
      - 'v*'

concurrency:
  group: ${{ github.workflow }}-${{ github.ref }}
  cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}

jobs:
  build:
    runs-on: ubuntu-latest
    container:
      image: ghcr.io/mbinorg/mbin-pipeline-image:latest
    steps:
      - uses: actions/checkout@v4

      - name: Get NPM cache directory path
        id: npm-cache-dir-path
        run: echo "dir=$(npm get cache)" >> $GITHUB_OUTPUT

      - name: Add GITHUB_WORKSPACE as a safe directory
        run: git config --global --add safe.directory $GITHUB_WORKSPACE

      - name: Get Composer Cache Directory
        id: composer-cache
        run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT

      - uses: actions/cache@v4
        id: npm-cache
        with:
          path: ${{ steps.npm-cache-dir-path.outputs.dir }}
          key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }}

      - uses: actions/cache@v4
        with:
          path: ${{ steps.composer-cache.outputs.dir }}
          key: ${{ runner.os }}-composer-no-dev-${{ hashFiles('**/composer.lock') }}

      - run: cp .env.example .env
      - name: Composer install
        run: >
          ./ci/skipOnExcluded.sh
          composer install --no-dev --no-progress

      - name: Test API dump
        run: >
          ./ci/skipOnExcluded.sh
          php bin/console nelmio:apidoc:dump

      - name: NPM install
        run: >
          ./ci/skipOnExcluded.sh
          npm ci --include=dev
        env:
          NODE_ENV: production

      - name: Build frontend (production)
        run: >
          ./ci/skipOnExcluded.sh
          npm run build

  automated-tests:
    runs-on: ubuntu-latest
    container:
      image: ghcr.io/mbinorg/mbin-pipeline-image:latest
    steps:
      - uses: actions/checkout@v4

      - name: Add GITHUB_WORKSPACE as a safe directory
        run: git config --global --add safe.directory $GITHUB_WORKSPACE

      - name: Get Composer Cache Directory
        id: composer-cache
        run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT

      - name: Get NPM cache directory path
        id: npm-cache-dir-path
        run: echo "dir=$(npm get cache)" >> $GITHUB_OUTPUT

      - uses: actions/cache@v4
        with:
          path: ${{ steps.composer-cache.outputs.dir }}
          key: ${{ runner.os }}-composer-${{ hashFiles('*/composer.lock') }}
          restore-keys: ${{ runner.os }}-composer-

      - uses: actions/cache@v4
        id: npm-cache
        with:
          path: ${{ steps.npm-cache-dir-path.outputs.dir }}
          key: ${{ runner.os }}-npm-${{ hashFiles('*/package-lock.json') }}
          restore-keys: ${{ runner.os }}-npm-

      - name: Composer install
        run: >
          ./ci/skipOnExcluded.sh
          composer install --no-scripts --no-progress

      - run: cp .env.example .env

      - name: NPM install
        run: >
          ./ci/skipOnExcluded.sh
          npm ci --include=dev
        env:
          NODE_ENV: production

      - name: Build frontend (production)
        run: >
          ./ci/skipOnExcluded.sh
          npm run build

      - name: Run unit tests
        env:
          COMPOSER_CACHE_DIR: ${{ steps.composer-cache.outputs.dir }}
          SYMFONY_DEPRECATIONS_HELPER: disabled
          DATABASE_HOST: postgres
          DATABASE_PORT: 5432
          REDIS_HOST: valkey
          REDIS_PORT: 6379
          CREATE_SNAPSHOTS: false
        run: >
          ./ci/skipOnExcluded.sh
          php vendor/bin/paratest tests/Unit

      - name: Run non thread safe integration tests
        env:
          COMPOSER_CACHE_DIR: ${{ steps.composer-cache.outputs.dir }}
          SYMFONY_DEPRECATIONS_HELPER: disabled
          DATABASE_HOST: postgres
          DATABASE_PORT: 5432
          REDIS_HOST: valkey
          REDIS_PORT: 6379
        run: >
          ./ci/skipOnExcluded.sh
          php vendor/bin/phpunit tests/Functional
          --group NonThreadSafe

      - name: Run thread safe integration tests
        env:
          COMPOSER_CACHE_DIR: ${{ steps.composer-cache.outputs.dir }}
          SYMFONY_DEPRECATIONS_HELPER: disabled
          DATABASE_HOST: postgres
          DATABASE_PORT: 5432
          REDIS_HOST: valkey
          REDIS_PORT: 6379
        run: >
          ./ci/skipOnExcluded.sh
          php vendor/bin/paratest tests/Functional
          --exclude-group NonThreadSafe
    services:
      postgres:
        # Docker Hub image
        image: postgres:16
        # Provide the password for postgres
        env:
          POSTGRES_DB: mbin_test
          POSTGRES_USER: mbin
          POSTGRES_PASSWORD: ChangeThisPostgresPass
        # Set health checks to wait until postgres has started
        options: >-
          --health-cmd pg_isready
          --health-interval 10s
          --health-timeout 5s
          --health-retries 5
      valkey:
        # Docker Hub image
        image: valkey/valkey
        # Set health checks to wait until redis has started
        options: >-
          --health-cmd "redis-cli ping"
          --health-interval 10s
          --health-timeout 5s
          --health-retries 5

  audit-check:
    runs-on: ubuntu-latest
    container:
      image: ghcr.io/mbinorg/mbin-pipeline-image:latest
    continue-on-error: true
    steps:
      - uses: actions/checkout@v4

      - name: Add GITHUB_WORKSPACE as a safe directory
        run: git config --global --add safe.directory $GITHUB_WORKSPACE

      - name: Get Composer Cache Directory
        id: composer-cache
        run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT

      - name: Cache vendor directory
        uses: actions/cache@v4
        with:
          path: ${{ steps.composer-cache.outputs.dir }}
          key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
          restore-keys: ${{ runner.os }}-composer-

      - run: cp .env.example .env
      - name: Composer install
        run: composer install --no-scripts --no-progress

      - name: Run Npm audit
        run: npm audit --omit=dev

      - name: Run Composer audit
        run: composer audit --no-dev --abandoned=ignore

  fixer-dry-run:
    runs-on: ubuntu-latest
    container:
      image: ghcr.io/mbinorg/mbin-pipeline-image:latest
    steps:
      - uses: actions/checkout@v4

      - name: Add GITHUB_WORKSPACE as a safe directory
        run: git config --global --add safe.directory $GITHUB_WORKSPACE

      - name: Get Composer Cache Directory
        id: composer-cache
        run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT

      - uses: actions/cache@v4
        with:
          path: ${{ steps.composer-cache.outputs.dir }}
          key: ${{ runner.os }}-composer-tools-${{ hashFiles('**/composer.lock') }}
          restore-keys: ${{ runner.os }}-composer-tools-

      - name: Composer tools install
        run: composer -d tools install --no-scripts --no-progress

      - name: PHP CS Fixer dry-run with diff
        run: >
          tools/vendor/bin/php-cs-fixer fix
          --dry-run --diff --show-progress=none

      - name: PHP CS Fixer to PR Annotations
        run: >
          tools/vendor/bin/php-cs-fixer fix
          --dry-run --format=checkstyle --show-progress=none | cs2pr

  twig-lint:
    runs-on: ubuntu-latest
    container:
      image: ghcr.io/mbinorg/mbin-pipeline-image:latest
    steps:
      - uses: actions/checkout@v4

      - name: Add GITHUB_WORKSPACE as a safe directory
        run: git config --global --add safe.directory $GITHUB_WORKSPACE

      - name: Get Composer Cache Directory
        id: composer-cache
        run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT

      - uses: actions/cache@v4
        with:
          path: ${{ steps.composer-cache.outputs.dir }}
          key: ${{ runner.os }}-composer-tools-${{ hashFiles('**/composer.lock') }}
          restore-keys: ${{ runner.os }}-composer-tools-

      - run: cp .env.example .env

      - name: Composer tools install
        run: composer install --no-scripts --no-progress

      - name: Twig linter
        run: php bin/console lint:twig templates/

  frontend-lint:
    runs-on: ubuntu-latest
    container:
      image: ghcr.io/mbinorg/mbin-pipeline-image:latest
    steps:
      - uses: actions/checkout@v4

      - name: Add GITHUB_WORKSPACE as a safe directory
        run: git config --global --add safe.directory $GITHUB_WORKSPACE

      - name: Get Composer Cache Directory
        id: composer-cache
        run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT

      - name: Get NPM cache directory path
        id: npm-cache-dir-path
        run: echo "dir=$(npm get cache)" >> $GITHUB_OUTPUT

      - uses: actions/cache@v4
        with:
          path: ${{ steps.composer-cache.outputs.dir }}
          key: ${{ runner.os }}-composer-${{ hashFiles('*/composer.lock') }}
          restore-keys: ${{ runner.os }}-composer-

      - uses: actions/cache@v4
        id: npm-cache
        with:
          path: ${{ steps.npm-cache-dir-path.outputs.dir }}
          key: ${{ runner.os }}-npm-${{ hashFiles('*/package-lock.json') }}
          restore-keys: ${{ runner.os }}-npm-

      - name: Composer install
        run: composer install --no-scripts --no-progress

      - run: cp .env.example .env

      - name: NPM install
        run: npm ci

      - name: eslint
        run: npm run lint

  build-and-publish-docker-image:
    runs-on: ubuntu-latest
    # Let's only run this on branches and tagged releases only
    # Because the Docker build takes quite some time.
    if: github.event_name != 'pull_request'
    permissions:
      contents: write
      packages: write
    steps:
      - uses: actions/checkout@v4

      - name: Login to ghcr
        if: github.event_name != 'pull_request'
        uses: docker/login-action@v3
        with:
          registry: ghcr.io
          username: ${{ github.repository_owner }}
          password: ${{ secrets.GITHUB_TOKEN }}

      - name: Docker meta data
        id: meta
        uses: docker/metadata-action@v5
        with:
          images: ghcr.io/mbinorg/mbin

      - name: Build and push Docker image
        uses: docker/build-push-action@v5
        with:
          context: .
          file: ./docker/Dockerfile
          push: ${{ github.event_name != 'pull_request' }}
          tags: ${{ steps.meta.outputs.tags }}
          labels: ${{ steps.meta.outputs.labels }}

      # We will also use this job to dispatch an event to the mbin-docs repository to trigger documentation build and publish
      - name: Trigger mbin-docs workflow dispatch
        if: github.event_name != 'pull_request'
        uses: peter-evans/repository-dispatch@v4
        with:
          token: ${{ secrets.MBIN_ACCESS_TOKEN }}
          repository: MbinOrg/mbin-docs
          event-type: update-docs


================================================
FILE: .github/workflows/build-and-publish-pipeline-image.yaml
================================================
name: Build and publish Mbin GitHub pipeline image

# Trigger either manually or when ci/Dockerfile changes (on the main branch)
on:
  push:
    branches: ['main']
    paths:
      - 'ci/Dockerfile'
  workflow_dispatch:

jobs:
  build-and-publish-docker-image:
    runs-on: ubuntu-latest
    permissions:
      contents: write
      packages: write

    steps:
      - name: Checkout code
        uses: actions/checkout@v4
        with:
          ref: main

      - name: Login to ghcr
        uses: docker/login-action@v3
        with:
          registry: ghcr.io
          username: ${{ github.repository_owner }}
          password: ${{ secrets.GITHUB_TOKEN }}

      - name: Build image
        working-directory: ./ci
        run: |
          docker build -t ghcr.io/mbinorg/mbin-pipeline-image:latest .

      - name: Publish
        run: |
          docker push ghcr.io/mbinorg/mbin-pipeline-image:latest


================================================
FILE: .github/workflows/build-pipeline-image.yaml
================================================
name: Build Mbin GitHub pipeline image

# Only trigger on Pull requests when ci/Dockerfile is changed (do not push the image)
on:
  pull_request:
    branches:
      - main
    paths:
      - 'ci/Dockerfile'

jobs:
  build-docker-image:
    runs-on: ubuntu-latest

    steps:
      - name: Checkout code
        uses: actions/checkout@v4

      - name: Build test image
        working-directory: ./ci
        run: |
          docker build .


================================================
FILE: .github/workflows/contrib.yaml
================================================
name: Contributor Workflow
on:
  push:
    branches:
      - main

jobs:
  contrib-readme:
    runs-on: ubuntu-latest
    name: Update contrib in README
    permissions:
          contents: write
          pull-requests: write
    steps:
      - name: Contribute List
        uses: akhilmhdh/contributors-readme-action@v2.3.11
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}


================================================
FILE: .github/workflows/psalm.yml
================================================
name: Psalm Security Scan

on:
  push:
    branches: ["main"]
  pull_request:
    # The branches below must be a subset of the branches above
    branches: ["main"]
  schedule:
    - cron: "25 9 * * 0"

permissions:
  contents: read

concurrency:
  group: ${{ github.workflow }}-${{ github.ref }}
  cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}

jobs:
  php-security-scan:
    runs-on: ubuntu-latest
    permissions:
      contents: read
      security-events: write # for github/codeql-action/upload-sarif to upload SARIF results
      actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status

    steps:
      - name: Checkout code
        uses: actions/checkout@v4

      - name: Psalm Security Scan by Mbin
        uses: docker://ghcr.io/mbinorg/psalm-security-scan

      - name: Import Security Analysis results into GitHub Security Code Scanning
        uses: github/codeql-action/upload-sarif@v2
        with:
          sarif_file: results.sarif


================================================
FILE: .github/workflows/stale.yml
================================================
name: "Close stale issues and PRs"
on:
  schedule:
    - cron: "46 1 * * *"

jobs:
  stale:
    permissions:
      issues: write
      pull-requests: write
    runs-on: ubuntu-latest
    steps:
      - uses: actions/stale@v9
        with:
          stale-issue-message: "This issue is stale because it has been open a year with no activity."
          stale-pr-message: "This PR is stale because it has been open 40 days with no activity."
          close-issue-message: "This issue was closed because it has been stalled for 6 days with no activity."
          exempt-issue-labels: "high priority"
          days-before-issue-stale: 365
          days-before-pr-stale: 40
          days-before-issue-close: -1
          days-before-pr-close: -1


================================================
FILE: .gitignore
================================================
# IDEA/PhpStorm
*.iml
.idea/
.DS_Store
supervisord.log
supervisord.pid
reports/
.php-cs-fixer.cache
tools/vendor/

# VSCode
.vscode/
.vs/
*.session.sql

# Keys
*.pem

# Mbin specific
.env
/public/media/*
/public/media
yarn.lock
/metal/
/tests/assets/copy

# autogenerated files
/public/.rnd
/config/reference.php

# Docker specific
/storage/
/compose.override.yaml

###> symfony/framework-bundle ###
/.env.local
/.env.local.php
/.env.*.local
/config/secrets/prod/prod.decrypt.private.php
/public/bundles/
/public/cache/
/var/
/vendor/
/cache/
###< symfony/framework-bundle ###

###> symfony/phpunit-bridge ###
.phpunit
.phpunit.result.cache
/phpunit.xml
.phpunit.cache/
###< symfony/phpunit-bridge ###

###> symfony/webpack-encore-bundle ###
/node_modules/
/public/build/
npm-debug.log
yarn-error.log
###< symfony/webpack-encore-bundle ###

###> liip/imagine-bundle ###
/public/media/cache/
###< liip/imagine-bundle ###

###> league/oauth2-server-bundle ###
/config/jwt/*.pem
###< league/oauth2-server-bundle ###

###> phpunit/phpunit ###
/phpunit.xml
.phpunit.result.cache
clover.xml
/coverage
/.phpunit.cache/
###< phpunit/phpunit ###

###> phpstan/phpstan ###
phpstan.neon
###< phpstan/phpstan ###


================================================
FILE: .php-cs-fixer.dist.php
================================================
<?php

declare(strict_types=1);

$finder = (new PhpCsFixer\Finder())
    ->in(__DIR__)
    ->exclude([
        'var',
        'node_modules',
        'vendor',
        'docker',
    ])
;

return (new PhpCsFixer\Config())
    ->setParallelConfig(PhpCsFixer\Runner\Parallel\ParallelConfigFactory::detect())
    ->setRules([
        '@Symfony' => true,

        # defined as "risky" as they could break code. Since our codebase is passing that's fine
        'declare_strict_types' => true,
        'strict_comparison' => true,
        'native_function_invocation' => true,
        'phpdoc_to_comment' => [
            'ignored_tags' => ['var']
        ]
    ])
    ->setRiskyAllowed(true)
    ->setFinder($finder)
    ;


================================================
FILE: C4.md
================================================
# Collective Code Construction Contract (C4) - Mbin

- Status: final
- Editor: Melroy van den Berg (melroy at melroy dot org)

The Collective Code Construction Contract (C4) is an evolution of the github.com Fork + Pull Model, aimed at providing an optimal collaboration model for free software projects. This is _our_ Mbin revision of the upstream C4 specification, built on the lessons learned from the experience of many other projects and the original C4 specification itself.

## License

Copyright (c) 2009-2016 Pieter Hintjens. Copyright (c) 2016-2018 The ZeroMQ developers.
Copyright (c) 2023-2024 Melroy van den Berg & Mbin developers.

This Specification is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version.

This Specification is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program; if not, see [http://www.gnu.org/licenses](http://www.gnu.org/licenses).

## Abstract

C4 provides a standard process for contributing, evaluating and discussing improvements on software projects. It defines specific technical requirements for projects like a style guide, unit tests, `git` and similar platforms. It also establishes different personas for projects, with clear and distinct duties. C4 specifies a process for documenting and discussing issues including seeking consensus and clear descriptions, use of “pull requests” and systematic reviews.

## Language

The key words “MUST”, “MUST NOT”, “REQUIRED”, “SHALL”, “SHALL NOT”, “SHOULD”, “SHOULD NOT”, “RECOMMENDED”, “MAY”, and “OPTIONAL” in this document are to be interpreted as described in [RFC 2119](http://tools.ietf.org/html/rfc2119).

## 1. Goals

C4 is meant to provide a reusable optimal collaboration model for open source software projects. It has these specific goals:

1.  To maximize the scale and diversity of the community around a project, by reducing the friction for new Contributors and creating a scaled participation model with strong positive feedbacks;
2.  To relieve dependencies on key individuals by separating different skill sets so that there is a larger pool of competence in any required domain;
3.  To allow the project to develop faster and more accurately, by increasing the diversity of the decision making process;
4.  To support the natural life cycle of project versions from experimental through to stable, by allowing safe experimentation, rapid failure, and isolation of stable code;
5.  To reduce the internal complexity of project repositories, thus making it easier for Contributors to participate and reducing the scope for error;
6.  To enforce collective ownership of the project, which increases economic incentive to Contributors and reduces the risk of hijack by hostile entities.

## 2. Design

### 2.1. Preliminaries

1.  The project SHALL use the git distributed revision control system.
2.  The project SHALL be hosted on github.com or equivalent, herein called the “Platform”.
3.  The project SHALL use the Platform issue tracker.
4.  The project SHOULD have clearly documented guidelines for code style.
5.  A code change is refer to as a “patch” or “PR” on the Platform.
6.  A “Contributor” is a person who wishes to provide a patch/PR, being a set of commits that solve some clearly identified problem.
7.  A “Maintainer” is a person who merges patches/PRs to the project. Maintainers can also be developers / contributors at the same time.
8.  Maintainers are owners of the project. There is no single “founder” or “creator” of the project.
9.  Contributors SHALL NOT have commit access to the repository unless they are also Maintainers.
10. Maintainers SHALL have commit access to the repository.
11. Administrators SHALL have administration rights on the Platform.
12. Everyone, without distinction or discrimination, SHALL have an equal right to become a Contributor under the terms of this contract.

### 2.2. Licensing and Ownership

1. The project SHALL use the share-alike license: [AGPL](https://github.com/MbinOrg/mbin/blob/main/LICENSE).
2. All contributions (patches/PRs) to the project source code SHALL use the same license as the project.
3. All patches / PRs are owned by their authors. There SHALL NOT be any copyright assignment process.

### 2.3. Patch / PR Requirements

1.  A patch / PR SHOULD be a minimal and accurate answer to exactly one identified and agreed problem.
2.  A patch / PR MUST adhere to the code style guidelines of the project if these are defined.
3.  A patch / PR MUST adhere to the “Evolution of Public Contracts” guidelines defined below.
4.  A patch / PR SHALL NOT include non-trivial code from other projects unless the Contributor is the original author of that code.
5.  A patch / PR SHALL NOT include libraries that are incompliant with the project license.
6.  A patch / PR MUST compile cleanly and pass project self-tests (for example unit tests or linting) before a Maintainer can merge it. Also known as the “All-green policy”.
7.  A commit message MUST consist of a single short (less than 100 characters) line stating the problem and/or solution that is being solved.
8.  A commit message MAY be prefixed with a addenum “FIX:”, “FEAT:”, “DOCS:”, “TEST:”, “REFACTOR:” or "IMPROVEMENT:" to indicate the type of commit. Also known as “semantic commit messages”.
9.  A commit type MAY be part of the PR title as well however using Labels on the Platform PR is usually preferred way of classifying the type of the Patch / PR.
10. A “Correct Patch / PR” is one that satisfies the above requirements.

### 2.4. Development Process

1. Change on the project SHALL be governed by the pattern of accurately identifying problems and applying minimal, accurate solutions to these problems.
2. To request changes, a user SHOULD log an issue on the project Platform issue tracker.
3. The user or Contributor SHOULD write the issue by describing the problem they face or observe.
4. The user or Contributor SHOULD seek consensus on the accuracy of their observation, and the value of solving the problem.
5. Users SHALL NOT log feature requests, ideas, suggestions, or any solutions to problems that are not explicitly documented and provable.
6. Thus, the release history of the project SHALL be a list of meaningful issues logged and solved.
7. To work on an issue, a Contributor SHOULD fork the project repository and then work on their forked repository. Unless the Contributor is also a Maintainer then a fork is NOT required, creating a new git branch SHOULD be sufficient.
8. To submit a patch, a Contributor SHALL create a Platform pull request back to the project.
9. Maintainers or Contributors SHOULD NOT directly push changes to the default branch (main), instead they SHOULD use the Platform Pull requests functionality. (See also branch protection rules of the Platform)
10. Contributors or Maintainers SHALL mark their PRs as “Draft” on the Platform, whenever the patch/PR is not yet ready for review / not finished.
11. If the Platform implements pull requests as issues, a Contributor MAY directly send a pull request without logging a separate issue.
12. To discuss a patch (PR), people SHOULD comment on the Platform pull request, on the commit, or on [Matrix Space (chat)](https://matrix.to/#/#mbin:melroy.org). We have various Matrix Rooms (also a dedicated [Matrix room for Pull Requests/Reviews](https://matrix.to/#/#mbin-pr:melroy.org)).
13. Contributors MAY want to discuss very large / complex changes (PRs) in the [Matrix Space](https://matrix.to/#/#mbin:melroy.org) first, since the effort might be all for nothing if the patch is rejected by the Maintainers in advance.
14. To request changes, accept or reject a patch / PR, a Maintainer SHALL use the Platform interface.
15. Maintainers SHOULD NOT merge patches (PRs), even their own, unless there is at least one (1) other Maintainer approval.
    Or in exceptional cases, such as non-responsiveness from other Maintainers for an extended period (more than 3-4 days), and the patch / PR has a high criticality level and cannot be waited on for more than 4 days before being merged.
16. Maintainers SHALL merge their own patches (PRs). Maintainers SHALL NOT merge patches from other Maintainers without their consent.
17. Maintainers SHOULD merge patches (PRs) from other Contributors, since Contributors do NOT have the rights to merge Pull Requests.
18. Maintainers SHALL NOT make value judgments on correct patches (PRs).
19. Maintainers SHALL merge correct patches (PRs) from other Contributors rapidly.
20. Maintainers MAY merge incorrect patches (PRs) from other Contributors with the goals of (a) ending fruitless discussions, (b) capturing toxic patches (PRs) in the historical record, (c) engaging with the Contributor on improving their patch (PR) quality.
21. The user who created an issue SHOULD close the issue after checking the patch (PR) is successful. Using “Closing keywords” in the description with a reference to the issue on the Platform will close the issue automatically. For example: “Fixes #251”.
22. Any Contributor who has value judgments on a patch / PR SHOULD express these via their own patches (PRs). Ideally after the correct patch / PR has been merged, avoiding file conflicts.
23. Maintainers SHALL use the “Squash and merge” option on the Platform pull request interface to merge a patch (PR).
24. Stale Platform Action is used to automatically mark an issue or a PR as “stale” and close the issue over time. PRs will NOT be closed automatically.

### 2.5. Branches and Releases

1. The project SHALL have one branch (“main”) that always holds the latest in-progress version and SHOULD always build.
2. The project MAY use topic / feature branches for new functionality.
3. To make a stable release a Maintainer SHALL tag the repository. Stable releases SHALL always be released from the repository main.
4. A Maintainer SHOULD create a release from the Platform Release page. The release description SHOULD contain our template table (“DB migrations”, “Cache clearning”, etc.) as well as releases notes (changes made in the release) in all cases.

### 2.6. Evolution of Public Contracts

1.  All Public Contracts (APIs or protocols and their behaviour and side effects) SHALL be documented.
2.  All Public Contracts SHOULD have space for extensibility and experimentation.
3.  A patch (PR) that modifies a stable Public Contract SHOULD not break existing applications unless there is overriding consensus on the value of doing this.
4.  A patch (PR) that introduces new features SHOULD do so using new names (a new contract).
5.  New contracts SHOULD be marked as “draft” until they are stable and used by real users.
6.  Old contracts SHOULD be deprecated in a systematic fashion by marking them as “deprecated” and replacing them with new contracts as needed.
7.  When sufficient time has passed, old deprecated contracts SHOULD be removed.
8.  Old names SHALL NOT be reused by new contracts.
9.  A new contract marked as “draft” MUST NOT be changed to “stable” until all the following conditions are met:
    1. Documentation has been written and is as comprehensive as that of comparable contracts.
    2. Self-tests exercising the functionality are passing.
    3. No changes in the contract have happened for at least one public release.
    4. No changes in the contract have happened for at least 6 months.
    5. No veto from the Contributor(s) of the new contract and its implementation on the change of status.
10. A new contract marked as “draft” SHOULD be changed to “stable” when the above conditions are met.
11. The “draft” to “stable” transition status for new contracts SHOULD be tracked using the Platform issue tracker.

### 2.7. Project Administration

1. The project's existing Maintainers SHALL act as Administrators to manage the set of project Maintainers.
2. The Administrators SHALL ensure their own succession over time by promoting the most effective Maintainers.
3. A new Contributor who makes correct patches (PRs), who clearly understands the project goals. After a discussion with existing Maintainers whether we SHOULD be invite a new Contributor, the new Contributor SHOULD be invited to become a Maintainer. But only after the new Contributor has demonstrated the above for a period of time (multiple correct PRs and more than 2-3 months).
4. Administrators MAY remove Maintainers that are long inactive (~1-2 years). Mainly due to security reasons. The Maintainer can always return back, if the person wants to become Maintainer again.
5. Administrators SHOULD remove Maintainers who repeatedly fail to apply this process accurately.
6. Administrators SHOULD block or ban “bad actors” who cause stress and pain to others in the project. This should be done after public discussion, with a chance for all parties to speak. A bad actor is someone who repeatedly ignores the rules and culture of the project, who is needlessly argumentative or hostile, or who is offensive, and who is unable to self-correct their behavior when asked to do so by others.
   If the majority of the currently active Maintainers agrees (or neutral) on the removal of the “bad actor” (after giving the “bad actor” time to self-improve), it can then be the final agreement on the decision to proceed with removal.

## Further Reading

- [Original C4 rev. 3](https://rfc.zeromq.org/spec/44/) - C4 by Pieter Hintjens

- [Argyris’ Models 1 and 2](http://en.wikipedia.org/wiki/Chris_Argyris) - the goals of C4 are consistent with Argyris’ Model 2.

- [Toyota Kata](http://en.wikipedia.org/wiki/Toyota_Kata) - covering the Improvement Kata (fixing problems one at a time) and the Coaching Kata (helping others to learn the Improvement Kata).


================================================
FILE: CONTRIBUTING.md
================================================
# Contributing to Mbin

For all the details about contributing [go to the following contributing page](docs/03-contributing).


================================================
FILE: LICENSE
================================================
                    GNU AFFERO GENERAL PUBLIC LICENSE
                       Version 3, 19 November 2007

 Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
 Everyone is permitted to copy and distribute verbatim copies
 of this license document, but changing it is not allowed.

                            Preamble

  The GNU Affero General Public License is a free, copyleft license for
software and other kinds of works, specifically designed to ensure
cooperation with the community in the case of network server software.

  The licenses for most software and other practical works are designed
to take away your freedom to share and change the works.  By contrast,
our General Public Licenses are intended to guarantee your freedom to
share and change all versions of a program--to make sure it remains free
software for all its users.

  When we speak of free software, we are referring to freedom, not
price.  Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
them if you wish), that you receive source code or can get it if you
want it, that you can change the software or use pieces of it in new
free programs, and that you know you can do these things.

  Developers that use our General Public Licenses protect your rights
with two steps: (1) assert copyright on the software, and (2) offer
you this License which gives you legal permission to copy, distribute
and/or modify the software.

  A secondary benefit of defending all users' freedom is that
improvements made in alternate versions of the program, if they
receive widespread use, become available for other developers to
incorporate.  Many developers of free software are heartened and
encouraged by the resulting cooperation.  However, in the case of
software used on network servers, this result may fail to come about.
The GNU General Public License permits making a modified version and
letting the public access it on a server without ever releasing its
source code to the public.

  The GNU Affero General Public License is designed specifically to
ensure that, in such cases, the modified source code becomes available
to the community.  It requires the operator of a network server to
provide the source code of the modified version running there to the
users of that server.  Therefore, public use of a modified version, on
a publicly accessible server, gives the public access to the source
code of the modified version.

  An older license, called the Affero General Public License and
published by Affero, was designed to accomplish similar goals.  This is
a different license, not a version of the Affero GPL, but Affero has
released a new version of the Affero GPL which permits relicensing under
this license.

  The precise terms and conditions for copying, distribution and
modification follow.

                       TERMS AND CONDITIONS

  0. Definitions.

  "This License" refers to version 3 of the GNU Affero General Public License.

  "Copyright" also means copyright-like laws that apply to other kinds of
works, such as semiconductor masks.

  "The Program" refers to any copyrightable work licensed under this
License.  Each licensee is addressed as "you".  "Licensees" and
"recipients" may be individuals or organizations.

  To "modify" a work means to copy from or adapt all or part of the work
in a fashion requiring copyright permission, other than the making of an
exact copy.  The resulting work is called a "modified version" of the
earlier work or a work "based on" the earlier work.

  A "covered work" means either the unmodified Program or a work based
on the Program.

  To "propagate" a work means to do anything with it that, without
permission, would make you directly or secondarily liable for
infringement under applicable copyright law, except executing it on a
computer or modifying a private copy.  Propagation includes copying,
distribution (with or without modification), making available to the
public, and in some countries other activities as well.

  To "convey" a work means any kind of propagation that enables other
parties to make or receive copies.  Mere interaction with a user through
a computer network, with no transfer of a copy, is not conveying.

  An interactive user interface displays "Appropriate Legal Notices"
to the extent that it includes a convenient and prominently visible
feature that (1) displays an appropriate copyright notice, and (2)
tells the user that there is no warranty for the work (except to the
extent that warranties are provided), that licensees may convey the
work under this License, and how to view a copy of this License.  If
the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.

  1. Source Code.

  The "source code" for a work means the preferred form of the work
for making modifications to it.  "Object code" means any non-source
form of a work.

  A "Standard Interface" means an interface that either is an official
standard defined by a recognized standards body, or, in the case of
interfaces specified for a particular programming language, one that
is widely used among developers working in that language.

  The "System Libraries" of an executable work include anything, other
than the work as a whole, that (a) is included in the normal form of
packaging a Major Component, but which is not part of that Major
Component, and (b) serves only to enable use of the work with that
Major Component, or to implement a Standard Interface for which an
implementation is available to the public in source code form.  A
"Major Component", in this context, means a major essential component
(kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to
produce the work, or an object code interpreter used to run it.

  The "Corresponding Source" for a work in object code form means all
the source code needed to generate, install, and (for an executable
work) run the object code and to modify the work, including scripts to
control those activities.  However, it does not include the work's
System Libraries, or general-purpose tools or generally available free
programs which are used unmodified in performing those activities but
which are not part of the work.  For example, Corresponding Source
includes interface definition files associated with source files for
the work, and the source code for shared libraries and dynamically
linked subprograms that the work is specifically designed to require,
such as by intimate data communication or control flow between those
subprograms and other parts of the work.

  The Corresponding Source need not include anything that users
can regenerate automatically from other parts of the Corresponding
Source.

  The Corresponding Source for a work in source code form is that
same work.

  2. Basic Permissions.

  All rights granted under this License are granted for the term of
copyright on the Program, and are irrevocable provided the stated
conditions are met.  This License explicitly affirms your unlimited
permission to run the unmodified Program.  The output from running a
covered work is covered by this License only if the output, given its
content, constitutes a covered work.  This License acknowledges your
rights of fair use or other equivalent, as provided by copyright law.

  You may make, run and propagate covered works that you do not
convey, without conditions so long as your license otherwise remains
in force.  You may convey covered works to others for the sole purpose
of having them make modifications exclusively for you, or provide you
with facilities for running those works, provided that you comply with
the terms of this License in conveying all material for which you do
not control copyright.  Those thus making or running the covered works
for you must do so exclusively on your behalf, under your direction
and control, on terms that prohibit them from making any copies of
your copyrighted material outside their relationship with you.

  Conveying under any other circumstances is permitted solely under
the conditions stated below.  Sublicensing is not allowed; section 10
makes it unnecessary.

  3. Protecting Users' Legal Rights From Anti-Circumvention Law.

  No covered work shall be deemed part of an effective technological
measure under any applicable law fulfilling obligations under article
11 of the WIPO copyright treaty adopted on 20 December 1996, or
similar laws prohibiting or restricting circumvention of such
measures.

  When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such circumvention
is effected by exercising rights under this License with respect to
the covered work, and you disclaim any intention to limit operation or
modification of the work as a means of enforcing, against the work's
users, your or third parties' legal rights to forbid circumvention of
technological measures.

  4. Conveying Verbatim Copies.

  You may convey verbatim copies of the Program's source code as you
receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice;
keep intact all notices stating that this License and any
non-permissive terms added in accord with section 7 apply to the code;
keep intact all notices of the absence of any warranty; and give all
recipients a copy of this License along with the Program.

  You may charge any price or no price for each copy that you convey,
and you may offer support or warranty protection for a fee.

  5. Conveying Modified Source Versions.

  You may convey a work based on the Program, or the modifications to
produce it from the Program, in the form of source code under the
terms of section 4, provided that you also meet all of these conditions:

    a) The work must carry prominent notices stating that you modified
    it, and giving a relevant date.

    b) The work must carry prominent notices stating that it is
    released under this License and any conditions added under section
    7.  This requirement modifies the requirement in section 4 to
    "keep intact all notices".

    c) You must license the entire work, as a whole, under this
    License to anyone who comes into possession of a copy.  This
    License will therefore apply, along with any applicable section 7
    additional terms, to the whole of the work, and all its parts,
    regardless of how they are packaged.  This License gives no
    permission to license the work in any other way, but it does not
    invalidate such permission if you have separately received it.

    d) If the work has interactive user interfaces, each must display
    Appropriate Legal Notices; however, if the Program has interactive
    interfaces that do not display Appropriate Legal Notices, your
    work need not make them do so.

  A compilation of a covered work with other separate and independent
works, which are not by their nature extensions of the covered work,
and which are not combined with it such as to form a larger program,
in or on a volume of a storage or distribution medium, is called an
"aggregate" if the compilation and its resulting copyright are not
used to limit the access or legal rights of the compilation's users
beyond what the individual works permit.  Inclusion of a covered work
in an aggregate does not cause this License to apply to the other
parts of the aggregate.

  6. Conveying Non-Source Forms.

  You may convey a covered work in object code form under the terms
of sections 4 and 5, provided that you also convey the
machine-readable Corresponding Source under the terms of this License,
in one of these ways:

    a) Convey the object code in, or embodied in, a physical product
    (including a physical distribution medium), accompanied by the
    Corresponding Source fixed on a durable physical medium
    customarily used for software interchange.

    b) Convey the object code in, or embodied in, a physical product
    (including a physical distribution medium), accompanied by a
    written offer, valid for at least three years and valid for as
    long as you offer spare parts or customer support for that product
    model, to give anyone who possesses the object code either (1) a
    copy of the Corresponding Source for all the software in the
    product that is covered by this License, on a durable physical
    medium customarily used for software interchange, for a price no
    more than your reasonable cost of physically performing this
    conveying of source, or (2) access to copy the
    Corresponding Source from a network server at no charge.

    c) Convey individual copies of the object code with a copy of the
    written offer to provide the Corresponding Source.  This
    alternative is allowed only occasionally and noncommercially, and
    only if you received the object code with such an offer, in accord
    with subsection 6b.

    d) Convey the object code by offering access from a designated
    place (gratis or for a charge), and offer equivalent access to the
    Corresponding Source in the same way through the same place at no
    further charge.  You need not require recipients to copy the
    Corresponding Source along with the object code.  If the place to
    copy the object code is a network server, the Corresponding Source
    may be on a different server (operated by you or a third party)
    that supports equivalent copying facilities, provided you maintain
    clear directions next to the object code saying where to find the
    Corresponding Source.  Regardless of what server hosts the
    Corresponding Source, you remain obligated to ensure that it is
    available for as long as needed to satisfy these requirements.

    e) Convey the object code using peer-to-peer transmission, provided
    you inform other peers where the object code and Corresponding
    Source of the work are being offered to the general public at no
    charge under subsection 6d.

  A separable portion of the object code, whose source code is excluded
from the Corresponding Source as a System Library, need not be
included in conveying the object code work.

  A "User Product" is either (1) a "consumer product", which means any
tangible personal property which is normally used for personal, family,
or household purposes, or (2) anything designed or sold for incorporation
into a dwelling.  In determining whether a product is a consumer product,
doubtful cases shall be resolved in favor of coverage.  For a particular
product received by a particular user, "normally used" refers to a
typical or common use of that class of product, regardless of the status
of the particular user or of the way in which the particular user
actually uses, or expects or is expected to use, the product.  A product
is a consumer product regardless of whether the product has substantial
commercial, industrial or non-consumer uses, unless such uses represent
the only significant mode of use of the product.

  "Installation Information" for a User Product means any methods,
procedures, authorization keys, or other information required to install
and execute modified versions of a covered work in that User Product from
a modified version of its Corresponding Source.  The information must
suffice to ensure that the continued functioning of the modified object
code is in no case prevented or interfered with solely because
modification has been made.

  If you convey an object code work under this section in, or with, or
specifically for use in, a User Product, and the conveying occurs as
part of a transaction in which the right of possession and use of the
User Product is transferred to the recipient in perpetuity or for a
fixed term (regardless of how the transaction is characterized), the
Corresponding Source conveyed under this section must be accompanied
by the Installation Information.  But this requirement does not apply
if neither you nor any third party retains the ability to install
modified object code on the User Product (for example, the work has
been installed in ROM).

  The requirement to provide Installation Information does not include a
requirement to continue to provide support service, warranty, or updates
for a work that has been modified or installed by the recipient, or for
the User Product in which it has been modified or installed.  Access to a
network may be denied when the modification itself materially and
adversely affects the operation of the network or violates the rules and
protocols for communication across the network.

  Corresponding Source conveyed, and Installation Information provided,
in accord with this section must be in a format that is publicly
documented (and with an implementation available to the public in
source code form), and must require no special password or key for
unpacking, reading or copying.

  7. Additional Terms.

  "Additional permissions" are terms that supplement the terms of this
License by making exceptions from one or more of its conditions.
Additional permissions that are applicable to the entire Program shall
be treated as though they were included in this License, to the extent
that they are valid under applicable law.  If additional permissions
apply only to part of the Program, that part may be used separately
under those permissions, but the entire Program remains governed by
this License without regard to the additional permissions.

  When you convey a copy of a covered work, you may at your option
remove any additional permissions from that copy, or from any part of
it.  (Additional permissions may be written to require their own
removal in certain cases when you modify the work.)  You may place
additional permissions on material, added by you to a covered work,
for which you have or can give appropriate copyright permission.

  Notwithstanding any other provision of this License, for material you
add to a covered work, you may (if authorized by the copyright holders of
that material) supplement the terms of this License with terms:

    a) Disclaiming warranty or limiting liability differently from the
    terms of sections 15 and 16 of this License; or

    b) Requiring preservation of specified reasonable legal notices or
    author attributions in that material or in the Appropriate Legal
    Notices displayed by works containing it; or

    c) Prohibiting misrepresentation of the origin of that material, or
    requiring that modified versions of such material be marked in
    reasonable ways as different from the original version; or

    d) Limiting the use for publicity purposes of names of licensors or
    authors of the material; or

    e) Declining to grant rights under trademark law for use of some
    trade names, trademarks, or service marks; or

    f) Requiring indemnification of licensors and authors of that
    material by anyone who conveys the material (or modified versions of
    it) with contractual assumptions of liability to the recipient, for
    any liability that these contractual assumptions directly impose on
    those licensors and authors.

  All other non-permissive additional terms are considered "further
restrictions" within the meaning of section 10.  If the Program as you
received it, or any part of it, contains a notice stating that it is
governed by this License along with a term that is a further
restriction, you may remove that term.  If a license document contains
a further restriction but permits relicensing or conveying under this
License, you may add to a covered work material governed by the terms
of that license document, provided that the further restriction does
not survive such relicensing or conveying.

  If you add terms to a covered work in accord with this section, you
must place, in the relevant source files, a statement of the
additional terms that apply to those files, or a notice indicating
where to find the applicable terms.

  Additional terms, permissive or non-permissive, may be stated in the
form of a separately written license, or stated as exceptions;
the above requirements apply either way.

  8. Termination.

  You may not propagate or modify a covered work except as expressly
provided under this License.  Any attempt otherwise to propagate or
modify it is void, and will automatically terminate your rights under
this License (including any patent licenses granted under the third
paragraph of section 11).

  However, if you cease all violation of this License, then your
license from a particular copyright holder is reinstated (a)
provisionally, unless and until the copyright holder explicitly and
finally terminates your license, and (b) permanently, if the copyright
holder fails to notify you of the violation by some reasonable means
prior to 60 days after the cessation.

  Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.

  Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License.  If your rights have been terminated and not permanently
reinstated, you do not qualify to receive new licenses for the same
material under section 10.

  9. Acceptance Not Required for Having Copies.

  You are not required to accept this License in order to receive or
run a copy of the Program.  Ancillary propagation of a covered work
occurring solely as a consequence of using peer-to-peer transmission
to receive a copy likewise does not require acceptance.  However,
nothing other than this License grants you permission to propagate or
modify any covered work.  These actions infringe copyright if you do
not accept this License.  Therefore, by modifying or propagating a
covered work, you indicate your acceptance of this License to do so.

  10. Automatic Licensing of Downstream Recipients.

  Each time you convey a covered work, the recipient automatically
receives a license from the original licensors, to run, modify and
propagate that work, subject to this License.  You are not responsible
for enforcing compliance by third parties with this License.

  An "entity transaction" is a transaction transferring control of an
organization, or substantially all assets of one, or subdividing an
organization, or merging organizations.  If propagation of a covered
work results from an entity transaction, each party to that
transaction who receives a copy of the work also receives whatever
licenses to the work the party's predecessor in interest had or could
give under the previous paragraph, plus a right to possession of the
Corresponding Source of the work from the predecessor in interest, if
the predecessor has it or can get it with reasonable efforts.

  You may not impose any further restrictions on the exercise of the
rights granted or affirmed under this License.  For example, you may
not impose a license fee, royalty, or other charge for exercise of
rights granted under this License, and you may not initiate litigation
(including a cross-claim or counterclaim in a lawsuit) alleging that
any patent claim is infringed by making, using, selling, offering for
sale, or importing the Program or any portion of it.

  11. Patents.

  A "contributor" is a copyright holder who authorizes use under this
License of the Program or a work on which the Program is based.  The
work thus licensed is called the contributor's "contributor version".

  A contributor's "essential patent claims" are all patent claims
owned or controlled by the contributor, whether already acquired or
hereafter acquired, that would be infringed by some manner, permitted
by this License, of making, using, or selling its contributor version,
but do not include claims that would be infringed only as a
consequence of further modification of the contributor version.  For
purposes of this definition, "control" includes the right to grant
patent sublicenses in a manner consistent with the requirements of
this License.

  Each contributor grants you a non-exclusive, worldwide, royalty-free
patent license under the contributor's essential patent claims, to
make, use, sell, offer for sale, import and otherwise run, modify and
propagate the contents of its contributor version.

  In the following three paragraphs, a "patent license" is any express
agreement or commitment, however denominated, not to enforce a patent
(such as an express permission to practice a patent or covenant not to
sue for patent infringement).  To "grant" such a patent license to a
party means to make such an agreement or commitment not to enforce a
patent against the party.

  If you convey a covered work, knowingly relying on a patent license,
and the Corresponding Source of the work is not available for anyone
to copy, free of charge and under the terms of this License, through a
publicly available network server or other readily accessible means,
then you must either (1) cause the Corresponding Source to be so
available, or (2) arrange to deprive yourself of the benefit of the
patent license for this particular work, or (3) arrange, in a manner
consistent with the requirements of this License, to extend the patent
license to downstream recipients.  "Knowingly relying" means you have
actual knowledge that, but for the patent license, your conveying the
covered work in a country, or your recipient's use of the covered work
in a country, would infringe one or more identifiable patents in that
country that you have reason to believe are valid.

  If, pursuant to or in connection with a single transaction or
arrangement, you convey, or propagate by procuring conveyance of, a
covered work, and grant a patent license to some of the parties
receiving the covered work authorizing them to use, propagate, modify
or convey a specific copy of the covered work, then the patent license
you grant is automatically extended to all recipients of the covered
work and works based on it.

  A patent license is "discriminatory" if it does not include within
the scope of its coverage, prohibits the exercise of, or is
conditioned on the non-exercise of one or more of the rights that are
specifically granted under this License.  You may not convey a covered
work if you are a party to an arrangement with a third party that is
in the business of distributing software, under which you make payment
to the third party based on the extent of your activity of conveying
the work, and under which the third party grants, to any of the
parties who would receive the covered work from you, a discriminatory
patent license (a) in connection with copies of the covered work
conveyed by you (or copies made from those copies), or (b) primarily
for and in connection with specific products or compilations that
contain the covered work, unless you entered into that arrangement,
or that patent license was granted, prior to 28 March 2007.

  Nothing in this License shall be construed as excluding or limiting
any implied license or other defenses to infringement that may
otherwise be available to you under applicable patent law.

  12. No Surrender of Others' Freedom.

  If conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License.  If you cannot convey a
covered work so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you may
not convey it at all.  For example, if you agree to terms that obligate you
to collect a royalty for further conveying from those to whom you convey
the Program, the only way you could satisfy both those terms and this
License would be to refrain entirely from conveying the Program.

  13. Remote Network Interaction; Use with the GNU General Public License.

  Notwithstanding any other provision of this License, if you modify the
Program, your modified version must prominently offer all users
interacting with it remotely through a computer network (if your version
supports such interaction) an opportunity to receive the Corresponding
Source of your version by providing access to the Corresponding Source
from a network server at no charge, through some standard or customary
means of facilitating copying of software.  This Corresponding Source
shall include the Corresponding Source for any work covered by version 3
of the GNU General Public License that is incorporated pursuant to the
following paragraph.

  Notwithstanding any other provision of this License, you have
permission to link or combine any covered work with a work licensed
under version 3 of the GNU General Public License into a single
combined work, and to convey the resulting work.  The terms of this
License will continue to apply to the part which is the covered work,
but the work with which it is combined will remain governed by version
3 of the GNU General Public License.

  14. Revised Versions of this License.

  The Free Software Foundation may publish revised and/or new versions of
the GNU Affero General Public License from time to time.  Such new versions
will be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.

  Each version is given a distinguishing version number.  If the
Program specifies that a certain numbered version of the GNU Affero General
Public License "or any later version" applies to it, you have the
option of following the terms and conditions either of that numbered
version or of any later version published by the Free Software
Foundation.  If the Program does not specify a version number of the
GNU Affero General Public License, you may choose any version ever published
by the Free Software Foundation.

  If the Program specifies that a proxy can decide which future
versions of the GNU Affero General Public License can be used, that proxy's
public statement of acceptance of a version permanently authorizes you
to choose that version for the Program.

  Later license versions may give you additional or different
permissions.  However, no additional obligations are imposed on any
author or copyright holder as a result of your choosing to follow a
later version.

  15. Disclaimer of Warranty.

  THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
APPLICABLE LAW.  EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
IS WITH YOU.  SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.

  16. Limitation of Liability.

  IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
SUCH DAMAGES.

  17. Interpretation of Sections 15 and 16.

  If the disclaimer of warranty and limitation of liability provided
above cannot be given local legal effect according to their terms,
reviewing courts shall apply local law that most closely approximates
an absolute waiver of all civil liability in connection with the
Program, unless a warranty or assumption of liability accompanies a
copy of the Program in return for a fee.

                     END OF TERMS AND CONDITIONS

            How to Apply These Terms to Your New Programs

  If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.

  To do so, attach the following notices to the program.  It is safest
to attach them to the start of each source file to most effectively
state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.

    <one line to give the program's name and a brief idea of what it does.>
    Copyright (C) <year>  <name of author>

    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU Affero General Public License as published
    by the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU Affero General Public License for more details.

    You should have received a copy of the GNU Affero General Public License
    along with this program.  If not, see <https://www.gnu.org/licenses/>.

Also add information on how to contact you by electronic and paper mail.

  If your software can interact with users remotely through a computer
network, you should also make sure that it provides a way for users to
get its source.  For example, if your program is a web application, its
interface could display a "Source" link that leads users to an archive
of the code.  There are many ways you could offer source, and different
solutions will be better for different programs; see section 13 for the
specific requirements.

  You should also get your employer (if you work as a programmer) or school,
if any, to sign a "copyright disclaimer" for the program, if necessary.
For more information on this, and how to apply and follow the GNU AGPL, see
<https://www.gnu.org/licenses/>.


================================================
FILE: LICENSES/Zlib.txt
================================================
This software is provided 'as-is', without any express or implied
warranty.  In no event will the authors be held liable for any damages
arising from the use of this software.

Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:

1. The origin of this software must not be misrepresented; you must not
   claim that you wrote the original software. If you use this software
   in a product, an acknowledgment in the product documentation would be
   appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
   misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.

================================================
FILE: README.md
================================================
<p align="center">
    <img src="docs/images/mbin.png" alt="Mbin logo" width="400">
</p>
<p align="center">
  <a href="https://github.com/MbinOrg/mbin/actions/workflows/action.yaml?query=branch%3Amain"><img src="https://github.com/MbinOrg/mbin/actions/workflows/action.yaml/badge.svg?branch=main" alt="GitHub Actions Workflow"></a>
  <a href="https://github.com/MbinOrg/mbin/actions/workflows/psalm.yml?query=branch%3Amain"><img src="https://github.com/MbinOrg/mbin/actions/workflows/psalm.yml/badge.svg?branch=main" alt="Psalm Security Scan"></a>
  <a href="https://hosted.weblate.org/engage/mbin/"><img src="https://hosted.weblate.org/widgets/mbin/-/svg-badge.svg" alt="Translation status"></a>
  <a href="https://matrix.to/#/#mbin:melroy.org"><img src="https://img.shields.io/badge/chat-on%20matrix-brightgreen" alt="Matrix chat"></a>
  <a href="https://github.com/MbinOrg/mbin/blob/main/LICENSE"><img src="https://img.shields.io/badge/AGPL%203.0-license-blue" alt="License"></a>
</p>

## Introduction

Mbin is a decentralized content aggregator, voting, discussion, and microblogging platform running on the fediverse. It can
communicate with various ActivityPub services, including but not limited to: Mastodon, Lemmy, Pixelfed, Pleroma, and PeerTube.

Mbin is a fork and continuation of [/kbin](https://codeberg.org/Kbin/kbin-core), but community-focused. Feel free to chat on [Matrix](https://matrix.to/#/#mbin:melroy.org). Pull requests are always welcome.

> [!Important]
> Mbin is focused on what the community wants. Pull requests can be merged by any repo maintainer with merge rights in GitHub. Discussions take place on [Matrix](https://matrix.to/#/#mbin:melroy.org) then _consensus_ has to be reached by the community.

Unique Features of Mbin for server owners & users alike:

- Tons of **[GUI improvements](https://github.com/MbinOrg/mbin/pulls?q=is%3Apr+is%3Amerged+label%3Afrontend)**
- A lot of **[enhancements](https://github.com/MbinOrg/mbin/pulls?q=is%3Apr+is%3Amerged+label%3Aenhancement)**
- Various **[bug fixes](https://github.com/MbinOrg/mbin/pulls?q=is%3Apr+is%3Amerged+label%3Abug)**
- Support of **all** ActivityPub Actor Types (including also "Service" account support; thus support for robot accounts)
- **Up-to-date** PHP packages and **security/vulnerability** issues fixed
- Support for `application/json` Accept request header on all ActivityPub end-points
- Introducing a hosted documentation: [docs.joinmbin.org](https://docs.joinmbin.org)

See also: [all merged PRs](https://github.com/MbinOrg/mbin/pulls?q=is%3Apr+is%3Amerged) or [our releases](https://github.com/MbinOrg/mbin/releases).

For developers:

- Improved [bare metal/VM guide](https://docs.joinmbin.org/admin/installation/bare_metal) and [Docker guide](https://docs.joinmbin.org/admin/installation/docker/)
- [Improved Docker setup](https://github.com/MbinOrg/mbin/pulls?q=is%3Apr+is%3Amerged+label%3Adocker)
- _Developer_ server explained (see [Development Server documentation here](https://docs.joinmbin.org/contributing/development_server) )
- GitHub Security advisories, vulnerability reporting, [Dependabot](https://github.com/features/security) and [Advanced code scanning](https://docs.github.com/en/code-security/code-scanning/introduction-to-code-scanning/about-code-scanning) enabled. And we run `composer audit`.
- Improved **code documentation**
- **Tight integration** with [Mbin Weblate project](https://hosted.weblate.org/engage/mbin/) for translations (Two way sync)
- Last but not least, a **community-focus project embracing the [Collective Code Construction Contract](./C4.md)** (C4). No single maintainer.

## Instances

- [List of instances](https://joinmbin.org/servers)
- [Alternative list of instances at fedidb.org](https://fedidb.org/software/mbin)
- [Alternative list of instances at fediverse.observer](https://mbin.fediverse.observer/list)

## Star History

[![Star History Chart](https://api.star-history.com/svg?repos=MbinOrg/mbin&type=Date)](https://star-history.com/#MbinOrg/mbin&Date)

## Contributing

- [Official repository on GitHub](https://github.com/MbinOrg/mbin)
- [Matrix Space for discussions](https://matrix.to/#/#mbin:melroy.org)
- [Translations](https://hosted.weblate.org/engage/mbin/)
- [Contribution guidelines](docs/03-contributing) - please read first, including before opening an issue!

## Magazines

Unofficial magazines:

- [@mbinmeta@gehirneimer.de](https://gehirneimer.de/m/mbinmeta)
- [@updates@kbin.melroy.org](https://kbin.melroy.org/m/updates)
- [@AskMbin@fedia.io](https://fedia.io/m/AskMbin)

## Contributors

<!-- readme: contributors -start -->
<table>
	<tbody>
		<tr>
            <td align="center">
                <a href="https://github.com/ernestwisniewski">
                    <img src="https://avatars.githubusercontent.com/u/10058784?v=4" width="100;" alt="ernestwisniewski"/>
                    <br />
                    <sub><b>Ernest</b></sub>
                </a>
            </td>
            <td align="center">
                <a href="https://github.com/melroy89">
                    <img src="https://avatars.githubusercontent.com/u/628926?v=4" width="100;" alt="melroy89"/>
                    <br />
                    <sub><b>Melroy van den Berg</b></sub>
                </a>
            </td>
            <td align="center">
                <a href="https://github.com/BentiGorlich">
                    <img src="https://avatars.githubusercontent.com/u/25664458?v=4" width="100;" alt="BentiGorlich"/>
                    <br />
                    <sub><b>BentiGorlich</b></sub>
                </a>
            </td>
            <td align="center">
                <a href="https://github.com/weblate">
                    <img src="https://avatars.githubusercontent.com/u/1607653?v=4" width="100;" alt="weblate"/>
                    <br />
                    <sub><b>Weblate (bot)</b></sub>
                </a>
            </td>
            <td align="center">
                <a href="https://github.com/e-five256">
                    <img src="https://avatars.githubusercontent.com/u/146029455?v=4" width="100;" alt="e-five256"/>
                    <br />
                    <sub><b>e-five</b></sub>
                </a>
            </td>
            <td align="center">
                <a href="https://github.com/asdfzdfj">
                    <img src="https://avatars.githubusercontent.com/u/20770492?v=4" width="100;" alt="asdfzdfj"/>
                    <br />
                    <sub><b>asdfzdfj</b></sub>
                </a>
            </td>
		</tr>
		<tr>
            <td align="center">
                <a href="https://github.com/SzymonKaminski">
                    <img src="https://avatars.githubusercontent.com/u/8536735?v=4" width="100;" alt="SzymonKaminski"/>
                    <br />
                    <sub><b>SzymonKaminski</b></sub>
                </a>
            </td>
            <td align="center">
                <a href="https://github.com/cooperaj">
                    <img src="https://avatars.githubusercontent.com/u/400210?v=4" width="100;" alt="cooperaj"/>
                    <br />
                    <sub><b>Adam Cooper</b></sub>
                </a>
            </td>
            <td align="center">
                <a href="https://github.com/simonrcodrington">
                    <img src="https://avatars.githubusercontent.com/u/12083338?v=4" width="100;" alt="simonrcodrington"/>
                    <br />
                    <sub><b>Simon Codrington</b></sub>
                </a>
            </td>
            <td align="center">
                <a href="https://github.com/blued-gear">
                    <img src="https://avatars.githubusercontent.com/u/164888202?v=4" width="100;" alt="blued-gear"/>
                    <br />
                    <sub><b>blued_gear</b></sub>
                </a>
            </td>
            <td align="center">
                <a href="https://github.com/kkoyung">
                    <img src="https://avatars.githubusercontent.com/u/11942650?v=4" width="100;" alt="kkoyung"/>
                    <br />
                    <sub><b>Kingsley Yung</b></sub>
                </a>
            </td>
            <td align="center">
                <a href="https://github.com/TheVillageGuy">
                    <img src="https://avatars.githubusercontent.com/u/47496248?v=4" width="100;" alt="TheVillageGuy"/>
                    <br />
                    <sub><b>TheVillageGuy</b></sub>
                </a>
            </td>
		</tr>
		<tr>
            <td align="center">
                <a href="https://github.com/danielpervan">
                    <img src="https://avatars.githubusercontent.com/u/5121830?v=4" width="100;" alt="danielpervan"/>
                    <br />
                    <sub><b>Daniel Pervan</b></sub>
                </a>
            </td>
            <td align="center">
                <a href="https://github.com/garrettw">
                    <img src="https://avatars.githubusercontent.com/u/84885?v=4" width="100;" alt="garrettw"/>
                    <br />
                    <sub><b>Garrett W.</b></sub>
                </a>
            </td>
            <td align="center">
                <a href="https://github.com/jwr1">
                    <img src="https://avatars.githubusercontent.com/u/47087725?v=4" width="100;" alt="jwr1"/>
                    <br />
                    <sub><b>John Wesley</b></sub>
                </a>
            </td>
            <td align="center">
                <a href="https://github.com/Ahrotahn">
                    <img src="https://avatars.githubusercontent.com/u/40727284?v=4" width="100;" alt="Ahrotahn"/>
                    <br />
                    <sub><b>Ahrotahn</b></sub>
                </a>
            </td>
            <td align="center">
                <a href="https://github.com/GauthierPLM">
                    <img src="https://avatars.githubusercontent.com/u/2579741?v=4" width="100;" alt="GauthierPLM"/>
                    <br />
                    <sub><b>Gauthier POGAM--LE MONTAGNER</b></sub>
                </a>
            </td>
            <td align="center">
                <a href="https://github.com/CocoPoops">
                    <img src="https://avatars.githubusercontent.com/u/7891055?v=4" width="100;" alt="CocoPoops"/>
                    <br />
                    <sub><b>CocoPoops</b></sub>
                </a>
            </td>
		</tr>
		<tr>
            <td align="center">
                <a href="https://github.com/thepaperpilot">
                    <img src="https://avatars.githubusercontent.com/u/3683148?v=4" width="100;" alt="thepaperpilot"/>
                    <br />
                    <sub><b>Anthony Lawn</b></sub>
                </a>
            </td>
            <td align="center">
                <a href="https://github.com/chall8908">
                    <img src="https://avatars.githubusercontent.com/u/315948?v=4" width="100;" alt="chall8908"/>
                    <br />
                    <sub><b>Chris Hall</b></sub>
                </a>
            </td>
            <td align="center">
                <a href="https://github.com/andrewmoise">
                    <img src="https://avatars.githubusercontent.com/u/8404538?v=4" width="100;" alt="andrewmoise"/>
                    <br />
                    <sub><b>andrewmoise</b></sub>
                </a>
            </td>
            <td align="center">
                <a href="https://github.com/piotr-sikora-v">
                    <img src="https://avatars.githubusercontent.com/u/1295000?v=4" width="100;" alt="piotr-sikora-v"/>
                    <br />
                    <sub><b>Piotr Sikora</b></sub>
                </a>
            </td>
            <td align="center">
                <a href="https://github.com/ryanmonsen">
                    <img src="https://avatars.githubusercontent.com/u/55466117?v=4" width="100;" alt="ryanmonsen"/>
                    <br />
                    <sub><b>ryanmonsen</b></sub>
                </a>
            </td>
            <td align="center">
                <a href="https://github.com/drupol">
                    <img src="https://avatars.githubusercontent.com/u/252042?v=4" width="100;" alt="drupol"/>
                    <br />
                    <sub><b>Pol Dellaiera</b></sub>
                </a>
            </td>
		</tr>
		<tr>
            <td align="center">
                <a href="https://github.com/MakaryGo">
                    <img src="https://avatars.githubusercontent.com/u/24472656?v=4" width="100;" alt="MakaryGo"/>
                    <br />
                    <sub><b>Makary</b></sub>
                </a>
            </td>
            <td align="center">
                <a href="https://github.com/cavebob">
                    <img src="https://avatars.githubusercontent.com/u/75441692?v=4" width="100;" alt="cavebob"/>
                    <br />
                    <sub><b>cavebob</b></sub>
                </a>
            </td>
            <td align="center">
                <a href="https://github.com/vpzomtrrfrt">
                    <img src="https://avatars.githubusercontent.com/u/3528358?v=4" width="100;" alt="vpzomtrrfrt"/>
                    <br />
                    <sub><b>vpzomtrrfrt</b></sub>
                </a>
            </td>
            <td align="center">
                <a href="https://github.com/lilfade">
                    <img src="https://avatars.githubusercontent.com/u/4168401?v=4" width="100;" alt="lilfade"/>
                    <br />
                    <sub><b>Bryson</b></sub>
                </a>
            </td>
            <td align="center">
                <a href="https://github.com/comradekingu">
                    <img src="https://avatars.githubusercontent.com/u/13802408?v=4" width="100;" alt="comradekingu"/>
                    <br />
                    <sub><b>Allan Nordhøy</b></sub>
                </a>
            </td>
            <td align="center">
                <a href="https://github.com/CSDUMMI">
                    <img src="https://avatars.githubusercontent.com/u/31551856?v=4" width="100;" alt="CSDUMMI"/>
                    <br />
                    <sub><b>CSDUMMI</b></sub>
                </a>
            </td>
		</tr>
		<tr>
            <td align="center">
                <a href="https://github.com/e-michalak">
                    <img src="https://avatars.githubusercontent.com/u/236532325?v=4" width="100;" alt="e-michalak"/>
                    <br />
                    <sub><b>e-michalak</b></sub>
                </a>
            </td>
            <td align="center">
                <a href="https://github.com/MHLoppy">
                    <img src="https://avatars.githubusercontent.com/u/12670674?v=4" width="100;" alt="MHLoppy"/>
                    <br />
                    <sub><b>Mark Heath</b></sub>
                </a>
            </td>
            <td align="center">
                <a href="https://github.com/robertolopezlopez">
                    <img src="https://avatars.githubusercontent.com/u/1519467?v=4" width="100;" alt="robertolopezlopez"/>
                    <br />
                    <sub><b>Roberto López López</b></sub>
                </a>
            </td>
            <td align="center">
                <a href="https://github.com/grahhnt">
                    <img src="https://avatars.githubusercontent.com/u/46821216?v=4" width="100;" alt="grahhnt"/>
                    <br />
                    <sub><b>grahhnt</b></sub>
                </a>
            </td>
            <td align="center">
                <a href="https://github.com/olorin99">
                    <img src="https://avatars.githubusercontent.com/u/36951539?v=4" width="100;" alt="olorin99"/>
                    <br />
                    <sub><b>olorin99</b></sub>
                </a>
            </td>
            <td align="center">
                <a href="https://github.com/privacyguard">
                    <img src="https://avatars.githubusercontent.com/u/92675882?v=4" width="100;" alt="privacyguard"/>
                    <br />
                    <sub><b>privacyguard</b></sub>
                </a>
            </td>
		</tr>
	<tbody>
</table>
<!-- readme: contributors -end -->

## Getting Started

### Documentation

See [docs.joinmbin.org](https://docs.joinmbin.org)

### Requirements

[See also Symfony requirements](https://symfony.com/doc/current/setup.html#technical-requirements)

- PHP version: 8.2 or higher
- GD or Imagemagick PHP extension
- NGINX / Apache / Caddy
- PostgreSQL
- RabbitMQ
- Valkey / KeyDB / Redis
- Mercure (optional)

## Languages

Following languages are currently supported/translated:

- Bulgarian
- Catalan
- Chinese
- Danish
- Dutch
- English
- Esperanto
- Filipino
- French
- Galician
- German
- Greek
- Italian
- Japanese
- Polish
- Portuguese
- Portuguese (Brazil)
- Russian
- Spanish
- Turkish
- Ukrainian

## Credits

- [grumpyDev](https://karab.in/u/grumpyDev): icons, kbin-theme
- [Emma](https://codeberg.org/LItiGiousemMA/Postmill): Postmill
- [Ernest](https://github.com/ernestwisniewski): Kbin

## License

[AGPL-3.0 license](LICENSE)


================================================
FILE: UPGRADE.md
================================================
# Upgrade

## Bare Metal / VM Upgrade

If you perform a mbin upgrade (eg. `git pull`), be aware to _always_ execute the following Bash script:

```bash
./bin/post-upgrade
```

And when needed also execute: `sudo redis-cli FLUSHDB` to get rid of Redis cache issues. And reload the PHP FPM service if you have OPCache enabled.

## Docker Upgrade

> [!Note]
> When you're using the [Docker v2 guide](docker/v2/), then the database migration is executed during the Docker container start-up.

```bash
$ docker compose exec php bin/console cache:clear
$ docker compose exec redis redis-cli
> auth REDIS_PASSWORD
> FLUSHDB
```


================================================
FILE: assets/app.js
================================================
import './stimulus_bootstrap.js';
import './styles/app.scss';
import './utils/popover.js';
import '@github/markdown-toolbar-element';
import { Application } from '@hotwired/stimulus';

if ('serviceWorker' in navigator) {
    window.addEventListener('load', function() {
        navigator.serviceWorker.register('/sw.js');
    });
}

// start the Stimulus application
Application.start();


================================================
FILE: assets/controllers/autogrow_controller.js
================================================
import TextareaAutoGrow from 'stimulus-textarea-autogrow';

/* stimulusFetch: 'lazy' */
export default class extends TextareaAutoGrow {

    connect() {
        super.connect();
    }
}


================================================
FILE: assets/controllers/clipboard_controller.js
================================================
import { Controller } from '@hotwired/stimulus';

/* stimulusFetch: 'lazy' */
export default class extends Controller {
    copy(event) {
        event.preventDefault();

        const url = event.target.href;
        navigator.clipboard.writeText(url);
    }
}


================================================
FILE: assets/controllers/collapsable_controller.js
================================================
import { Controller } from '@hotwired/stimulus';
import debounce from '../utils/debounce';

// use some buffer-space so that the expand-button won't be included if just a couple of lines would be hidden
const MAX_COLLAPSED_HEIGHT_REM = 25;
const MAX_FULL_HEIGHT_REM = 28;

/* stimulusFetch: 'lazy' */
export default class extends Controller {

    static targets = ['content', 'button'];

    maxCollapsedHeightPx = 0;
    maxFullHeightPx = 0;

    isActive = false;
    isExpanded = true;
    button = null;
    buttonIcon = null;

    connect() {
        const remConvert = parseFloat(getComputedStyle(document.documentElement).fontSize);
        this.maxCollapsedHeightPx = MAX_COLLAPSED_HEIGHT_REM * remConvert;
        this.maxFullHeightPx = MAX_FULL_HEIGHT_REM * remConvert;

        this.setup();

        const observerDebounced = debounce(200, () => {
            this.setup();
        });
        const observer = new ResizeObserver(observerDebounced);
        observer.observe(this.contentTarget);
    }

    setup() {
        const activate = this.checkSize();
        if (activate === this.isActive) {
            return;
        }

        if (activate) {
            this.setupButton();
            this.setExpanded(false, true);
        } else {
            this.contentTarget.style.maxHeight = null;
            this.button.remove();
        }

        this.isActive = activate;
    }

    checkSize() {
        const elem = this.contentTarget;
        return elem.scrollHeight - 30 > this.maxFullHeightPx || elem.scrollWidth > elem.clientWidth;
    }

    setupButton() {
        this.buttonIcon = document.createElement('i');
        this.buttonIcon.classList.add('fa-solid', 'fa-angles-down');

        this.button = document.createElement('div');
        this.button.classList.add('more');
        this.button.appendChild(this.buttonIcon);

        this.button.addEventListener('click', () => {
            this.setExpanded(!this.isExpanded, false);
        });

        this.buttonTarget.appendChild(this.button);
    }

    setExpanded(expanded, skipEffects) {
        if (expanded) {
            this.contentTarget.style.maxHeight = null;
            this.buttonIcon.classList.remove('fa-angles-down');
            this.buttonIcon.classList.add('fa-angles-up');
        } else {
            this.contentTarget.style.maxHeight = `${MAX_COLLAPSED_HEIGHT_REM}rem`;
            this.buttonIcon.classList.remove('fa-angles-up');
            this.buttonIcon.classList.add('fa-angles-down');

            if (!skipEffects) {
                this.contentTarget.scrollIntoView();
            }
        }

        this.isExpanded = expanded;
    }
}


================================================
FILE: assets/controllers/comment_collapse_controller.js
================================================
import { Controller } from '@hotwired/stimulus';
import { getLevel } from '../utils/mbin';

const COMMENT_ELEMENT_TAG = 'BLOCKQUOTE';
const COLLAPSIBLE_CLASS = 'collapsible';
const COLLAPSED_CLASS = 'collapsed';
const HIDDEN_CLASS = 'hidden';

/* stimulusFetch: 'lazy' */
export default class extends Controller {
    static values = {
        depth: Number,
        hiddenBy: Number,
    };
    static targets = ['counter'];

    connect() {
        // derive depth value if it doesn't exist
        // or when attached depth is 1 but css depth says otherwise (trying to handle dynamic list)
        const cssLevel = getLevel(this.element);
        if (!this.hasDepthValue
            || (1 === this.depthValue && cssLevel > this.depthValue)) {
            this.depthValue = cssLevel;
        }

        this.element.classList.add(COLLAPSIBLE_CLASS);
        this.element.collapse = this;
    }

    // main function, use this in action
    toggleCollapse(event) {
        event.preventDefault();

        for (
            var nextSibling = this.element.nextElementSibling, collapsed = 0;
            nextSibling && COMMENT_ELEMENT_TAG === nextSibling.tagName;
            nextSibling = nextSibling.nextElementSibling
        ) {
            const siblingDepth = nextSibling.dataset.commentCollapseDepthValue;
            if (!siblingDepth || siblingDepth <= this.depthValue) {
                break;
            }

            this.toggleHideSibling(nextSibling, this.depthValue);
            collapsed += 1;
        }

        this.toggleCollapseSelf();

        if (0 < collapsed) {
            this.updateCounter(collapsed);
        }
    }

    // signals sibling comment element to hide itself
    toggleHideSibling(element, collapserDepth) {
        if (!element.collapse.hasHiddenByValue) {
            element.collapse.hiddenByValue = collapserDepth;
        } else if (collapserDepth === element.collapse.hiddenByValue) {
            element.collapse.hiddenByValue = undefined;
        }
    }

    // put itself into collapsed state
    toggleCollapseSelf() {
        this.element.classList.toggle(COLLAPSED_CLASS);
    }

    updateCounter(count) {
        if (!this.hasCounterTarget) {
            return;
        }

        if (this.element.classList.contains(COLLAPSED_CLASS)) {
            this.counterTarget.innerText = `(${count})`;
        } else {
            this.counterTarget.innerText = '';
        }
    }

    // using value changed callback to enforce proper state appearance

    // existence of hidden-by value means this comment is in hidden state
    // (basically display: none)
    hiddenByValueChanged() {
        if (this.hasHiddenByValue) {
            this.element.classList.add(HIDDEN_CLASS);
        } else {
            this.element.classList.remove(HIDDEN_CLASS);
        }
    }
}


================================================
FILE: assets/controllers/confirmation_controller.js
================================================
import { Controller } from '@hotwired/stimulus';

/* stimulusFetch: 'lazy' */
export default class extends Controller {
    ask(event) {
        if (!window.confirm(event.params.message)) {
            event.preventDefault();
            event.stopImmediatePropagation();
        }
    }
}


================================================
FILE: assets/controllers/entry_link_create_controller.js
================================================
import { ApplicationController, useThrottle } from 'stimulus-use';
import { fetch, ok } from '../utils/http';
import router from '../utils/routing';

/* stimulusFetch: 'lazy' */
export default class extends ApplicationController {
    static throttles = ['fetchLink'];
    static targets = ['title', 'description', 'url', 'loader'];
    static values = {
        loading: Boolean,
    };

    timeoutId = null;

    connect() {
        useThrottle(this, {
            wait: 1000,
        });

        const params = new URLSearchParams(window.location.search);
        const url = params.get('url');
        if (url) {
            this.urlTarget.value = url;
            this.urlTarget.dispatchEvent(new Event('input'));
        }
    }

    fetchLink(event) {
        if (!event.target.value) {
            return;
        }

        if (this.timeoutId) {
            window.clearTimeout(this.timeoutId);
            this.timeoutId = null;
        }

        this.timeoutId = window.setTimeout(() => {
            this.loadingValue = true;
            this.fetchTitleAndDescription(event)
                .then(() => {
                    this.loadingValue = false;
                    this.timeoutId = null;
                })
                .catch(() => {
                    this.loadingValue = false;
                    this.timeoutId = null;
                });
        }, 1000);
    }

    loadingValueChanged(val) {
        this.titleTarget.disabled = val;
        this.descriptionTarget.disabled = val;

        if (val) {
            this.loaderTarget.classList.remove('hide');
        } else {
            this.loaderTarget.classList.add('hide');
        }
    }

    async fetchTitleAndDescription(event) {
        if (this.titleTarget.value && false === confirm('Are you sure you want to fetch the title and description? This will overwrite the current values.')) {
            return;
        }

        const url = router().generate('ajax_fetch_title');
        let response = await fetch(url, {
            method: 'POST',
            body: JSON.stringify({
                'url': event.target.value,
            }),
        });

        response = await ok(response);
        response = await response.json();

        this.titleTarget.value = response.title;
        this.descriptionTarget.value = response.description;

        // required for input length indicator
        this.titleTarget.dispatchEvent(new Event('input'));
        this.descriptionTarget.dispatchEvent(new Event('input'));
    }
}


================================================
FILE: assets/controllers/form_collection_controller.js
================================================
import { Controller } from '@hotwired/stimulus';

/* stimulusFetch: 'lazy' */
export default class extends Controller {
    static targets = ['collectionContainer'];

    static values = {
        index    : Number,
        prototype: String,
    };

    addCollectionElement() {
        const item = document.createElement('div');
        item.innerHTML = this.prototypeValue.replace(/__name__/g, this.indexValue);
        this.collectionContainerTarget.appendChild(item);
        this.indexValue++;
    }
}


================================================
FILE: assets/controllers/html_refresh_controller.js
================================================
import { fetch, ok } from '../utils/http';
import { Controller } from '@hotwired/stimulus';

/* stimulusFetch: 'lazy' */
export default class extends Controller {
    /**
     * Calls the address attached to the nearest link node. Replaces the outer html of the nearest `cssclass` parameter
     * with the response from the link
     */
    async linkCallback(event) {
        event.preventDefault();
        const { cssclass: cssClass, refreshlink: refreshLink, refreshselector: refreshSelector } = event.params;

        const a = event.target.closest('a');
        const subjectController = this.application.getControllerForElementAndIdentifier(this.element, 'subject');

        try {
            if (subjectController) {
                subjectController.loadingValue = true;
            }

            let response = await fetch(a.href);

            response = await ok(response);
            response = await response.json();

            event.target.closest(`.${cssClass}`).outerHTML = response.html;

            const refreshElement = this.element.querySelector(refreshSelector);

            if (!!refreshLink && '' !== refreshLink && !!refreshElement) {
                let response = await fetch(refreshLink);

                response = await ok(response);
                response = await response.json();
                refreshElement.outerHTML = response.html;
            }
        } catch (e) {
            console.error(e);
        } finally {
            if (subjectController) {
                subjectController.loadingValue = false;
            }
        }
    }
}


================================================
FILE: assets/controllers/image_upload_controller.js
================================================
import { Controller } from '@hotwired/stimulus';

/* stimulusFetch: 'lazy' */
export default class extends Controller {
    connect() {
        const container = this.element;
        const input = container.querySelector('.image-input');
        const preview = container.querySelector('.image-preview');
        const clearButton = container.querySelector('.image-preview-clear');

        input.addEventListener('change', function(e) {
            const file = e.target.files[0];
            const reader = new FileReader();

            reader.onload = function(e) {
                preview.src = e.target.result;
                preview.style.display = 'block';
                clearButton.setAttribute('style', 'display: inline-block !important');
            };

            reader.readAsDataURL(file);
        });
    }

    clearPreview() {
        const container = this.element;
        const input = container.querySelector('.image-input');
        const preview = container.querySelector('.image-preview');
        const clearButton = container.querySelector('.image-preview-clear');

        input.value = '';
        preview.src = '#';
        preview.style.display = 'none';
        clearButton.style.display = 'none';
    }
}


================================================
FILE: assets/controllers/infinite_scroll_controller.js
================================================
import { fetch, ok } from '../utils/http';
import { Controller } from '@hotwired/stimulus';
import { useIntersection } from 'stimulus-use';

/* stimulusFetch: 'lazy' */
export default class extends Controller {
    static targets = ['loader', 'pagination'];
    static values = {
        loading: Boolean,
    };

    connect() {
        window.infiniteScrollUrls = [];
        useIntersection(this);
    }

    async appear() {
        if (true === this.loadingValue) {
            return;
        }

        try {
            this.loadingValue = true;

            const cursorPaginationElement = this.paginationTarget.getElementsByClassName('cursor-pagination');
            let paginationElem = null;
            if (cursorPaginationElement.length) {
                const button = cursorPaginationElement[0].getElementsByClassName('next');
                if (!button.length) {
                    throw new Error('No more pages');
                }
                paginationElem = button[0];
            } else {
                paginationElem = this.paginationTarget.getElementsByClassName('pagination__item--current-page')[0].nextElementSibling;
                if (paginationElem.classList.contains('pagination__item--disabled')) {
                    throw new Error('No more pages');
                }
            }

            if (window.infiniteScrollUrls.includes(paginationElem.href)) {
                return;
            }

            window.infiniteScrollUrls.push(paginationElem.href);

            this.handleEntries(paginationElem.href);
        } catch {
            this.loadingValue = false;
            this.showPagination();
        }
    }

    async handleEntries(url) {
        let response = await fetch(url, { method: 'GET' });

        response = await ok(response);

        try {
            response = await response.json();
        } catch {
            this.showPagination();
            throw new Error('Invalid JSON response');
        }

        const div = document.createElement('div');
        div.innerHTML = response.html;

        const elements = div.querySelectorAll('[data-controller="subject-list"] > *');
        for (let i = 0; i < elements.length; i++) {
            const element = elements[i];
            if ((element.id && null === document.getElementById(element.id)) || element.classList.contains('user-box-inline') || element.classList.contains('magazine') || element.classList.contains('post-container')) {
                this.element.before(element);

                if (elements[i + 1] && elements[i + 1].classList.contains('post-comments')) {
                    this.element.before(elements[i + 1]);
                }
            }
        }

        const scroll = div.querySelector('[data-controller="infinite-scroll"]');
        if (scroll) {
            this.element.after(div.querySelector('[data-controller="infinite-scroll"]'));
        }

        this.element.remove();

        this.application
            .getControllerForElementAndIdentifier(document.getElementById('main'), 'lightbox')
            .connect();
        this.application
            .getControllerForElementAndIdentifier(document.getElementById('main'), 'timeago')
            .connect();
    }

    loadingValueChanged(val) {
        this.loaderTarget.style.display = true === val ? 'block' : 'none';
    }

    showPagination() {
        this.loadingValue = false;
        this.paginationTarget.classList.remove('visually-hidden');
    }
}


================================================
FILE: assets/controllers/input_length_controller.js
================================================
import { Controller } from '@hotwired/stimulus';

/* stimulusFetch: 'lazy' */
export default class extends Controller {
    static values = {
        max: Number,
    };

    /** DOM element that will hold the current/max text */
    lengthIndicator;

    connect() {
        if (!this.hasMaxValue) {
            return;
        }

        //create a html element to display the current/max text
        const indicator = document.createElement('div');

        indicator.classList.add('length-indicator');

        this.element.insertAdjacentElement('afterend', indicator);

        this.lengthIndicator = indicator;

        this.updateDisplay();
    }

    updateDisplay() {
        if (!this.lengthIndicator) {
            return;
        }

        //trim to max length if needed
        if (this.element.value.length >= this.maxValue) {
            this.element.value = this.element.value.substring(0, this.maxValue);
        }

        //display to user
        this.lengthIndicator.innerHTML = `${this.element.value.length}/${this.maxValue}`;
    }
}


================================================
FILE: assets/controllers/lightbox_controller.js
================================================
import { Controller } from '@hotwired/stimulus';
import GLightbox from 'glightbox';

/* stimulusFetch: 'lazy' */
export default class extends Controller {
    connect() {
        const params = {
            selector: '.thumb',
            openEffect: 'none',
            closeEffect: 'none',
            touchNavigation: true,
        };
        GLightbox(params);
    }
}


================================================
FILE: assets/controllers/markdown_toolbar_controller.js
================================================
// SPDX-FileCopyrightText: 2023-2024 /kbin & Mbin contributors
//
// SPDX-License-Identifier: AGPL-3.0-only

import 'emoji-picker-element';
import { autoUpdate, computePosition, flip, limitShift, shift } from '@floating-ui/dom';
import { Controller } from '@hotwired/stimulus';

/* stimulusFetch: 'lazy' */
export default class extends Controller {
    addSpoiler(event) {
        event.preventDefault();

        const input = document.getElementById(this.element.getAttribute('for'));
        let spoilerBody = 'spoiler body';
        let contentAfterCursor;

        const start = input.selectionStart;
        const end = input.selectionEnd;

        const contentBeforeCursor = input.value.substring(0, start);
        if (start === end) {
            contentAfterCursor = input.value.substring(start);
        } else {
            contentAfterCursor = input.value.substring(end);
            spoilerBody = input.value.substring(start, end);
        }

        const spoiler = `
::: spoiler spoiler-title
${spoilerBody}
:::`;

        input.value = contentBeforeCursor + spoiler + contentAfterCursor;
        input.dispatchEvent(new Event('input'));

        const spoilerTitlePosition = contentBeforeCursor.length + '::: spoiler '.length + 1;
        input.setSelectionRange(spoilerTitlePosition, spoilerTitlePosition);
        input.focus();
    }

    toggleEmojiPicker(event) {
        event.preventDefault();

        const button = event.currentTarget;
        const input = document.getElementById(this.element.getAttribute('for'));
        const tooltip = document.querySelector('#tooltip');
        const emojiPicker = document.querySelector('#emoji-picker');

        // Remove any existing event listener
        if (this.emojiClickHandler) {
            emojiPicker.removeEventListener('emoji-click', this.emojiClickHandler);
        }

        if (!this.cleanupTooltip) {
            this.cleanupTooltip = autoUpdate(button, tooltip, () => {
                computePosition(button, tooltip, {
                    placement: 'bottom',
                    middleware: [flip(), shift({ limiter: limitShift() })],
                }).then(({ x, y }) => {
                    Object.assign(tooltip.style, {
                        left: `${x}px`,
                        top: `${y}px`,
                    });
                });
            });
        }

        tooltip.classList.toggle('shown');

        if (tooltip.classList.contains('shown')) {
            this.emojiClickHandler = (event) => {
                const emoji = event.detail.emoji.unicode;
                const start = input.selectionStart;
                const end = input.selectionEnd;

                input.value = input.value.slice(0, start) + emoji + input.value.slice(end);
                const emojiPosition = start + emoji.length;
                input.setSelectionRange(emojiPosition, emojiPosition);
                input.focus();

                tooltip.classList.remove('shown');
                this.cleanupTooltip();
                emojiPicker.removeEventListener('emoji-click', this.emojiClickHandler);
                this.emojiClickHandler = null;
            };

            emojiPicker.addEventListener('emoji-click', this.emojiClickHandler);
        }
    }
}


================================================
FILE: assets/controllers/mbin_controller.js
================================================
import { ApplicationController, useDebounce } from 'stimulus-use';

/* stimulusFetch: 'lazy' */
export default class extends ApplicationController {
    static values = {
        loading: Boolean,
    };

    static debounces = ['mention'];

    connect() {
        useDebounce(this, { wait: 800 });
        this.handleDropdowns();
        this.handleOptionsBarScroll();
    }

    handleDropdowns() {
        this.element.querySelectorAll('.dropdown > a').forEach((dropdown) => {
            dropdown.addEventListener('click', (event) => {
                event.preventDefault();
            });
        });
    }

    handleOptionsBarScroll() {
        const container = document.getElementById('options');
        if (container) {
            const containerWidth = container.clientWidth;
            const area = container.querySelector('.options__main');

            if (null === area) {
                return;
            }

            const areaWidth = area.scrollWidth;

            if (areaWidth > containerWidth && !area.nextElementSibling) {
                container.insertAdjacentHTML('beforeend', '<menu class="scroll"><li class="scroll-left"><i class="fa-solid fa-circle-left"></i></li><li class="scroll-right"><i class="fa-solid fa-circle-right"></i></li></menu>');

                const scrollLeft = container.querySelector('.scroll-left');
                const scrollRight = container.querySelector('.scroll-right');
                const scrollArea = container.querySelector('.options__main');

                scrollRight.addEventListener('click', () => {
                    scrollArea.scrollLeft += 100;
                });
                scrollLeft.addEventListener('click', () => {
                    scrollArea.scrollLeft -= 100;
                });
            }
        }
    }

    /**
     * Handles interaction with the mobile nav button, opening the sidebar
     */
    handleNavToggleClick() {
        const sidebar = document.getElementById('sidebar');
        sidebar.classList.toggle('open');
    }

    changeLang(event) {
        window.location.href = '/settings/theme/mbin_lang/' + event.target.value;
    }
}


================================================
FILE: assets/controllers/mentions_controller.js
================================================
import { fetch, ok } from '../utils/http';
import { Controller } from '@hotwired/stimulus';
import router from '../utils/routing';

/* stimulusFetch: 'lazy' */
export default class extends Controller {

    /**
     * Instance of setTimeout to be used for the display of the popup. This is cleared if the user
     * exits the target before the delay is reached
     */
    userPopupTimeout;

    /**
     * Delay to wait until the popup is displayed
     */
    userPopupTimeoutDelay = 1200;

    /**
     * Called on mouseover
     * @param {*} event
     * @returns
     */
    async userPopup(event) {

        if (false === event.target.matches(':hover')) {
            return;
        }

        //create a setTimeout callback to be executed when the user has hovered over the target for a set amount of time
        this.userPopupTimeout = setTimeout(this.triggerUserPopup, this.userPopupTimeoutDelay, event);
    }

    /**
     * Called on mouseout, cancel the UI popup as the user has moved off the element
     */
    async userPopupOut() {
        clearTimeout(this.userPopupTimeout);
    }

    /**
     * Called when the user popup should open
     */
    async triggerUserPopup(event) {

        try {
            let param = event.params.username;

            if ('@' === param.charAt(0)) {
                param = param.substring(1);
            }
            const username = param.includes('@') ? `@${param}` : param;
            const url = router().generate('ajax_fetch_user_popup', { username: username });

            this.loadingValue = true;

            let response = await fetch(url);

            response = await ok(response);
            response = await response.json();

            document.querySelector('.popover').innerHTML = response.html;

            popover.trigger = event.target;
            popover.selectedTrigger = event.target;
            popover.element.dispatchEvent(new Event('openPopover'));
        } catch {
        } finally {
            this.loadingValue = false;
        }
    }

    async navigateUser(event) {
        event.preventDefault();

        window.location = '/u/' + event.params.username;
    }

    async navigateMagazine(event) {
        event.preventDefault();

        window.location = '/m/' + event.params.username;
    }
}


================================================
FILE: assets/controllers/notifications_controller.js
================================================
import { ThrowResponseIfNotOk, fetch } from '../utils/http';
import { Controller } from '@hotwired/stimulus';
import Subscribe from '../utils/event-source';

/* stimulusFetch: 'lazy' */
export default class extends Controller {
    static values = {
        endpoint: String,
        user: String,
        magazine: String,
        entryId: String,
        postId: String,
    };

    connect() {
        if (this.endpointValue) {
            this.connectEs(this.endpointValue, this.getTopics());

            window.addEventListener('pagehide', this.closeEs);
        }
        if (this.userValue) {
            this.fetchAndSetNewNotificationAndMessageCount();
        }
    }

    disconnect() {
        this.closeEs();
    }

    connectEs(endpoint, topics) {
        this.closeEs();

        const cb = (e) => {
            const data = JSON.parse(e.data);

            this.dispatch(data.op, { detail: data });

            this.dispatch('Notification', { detail: data });

            // if (data.op.includes('Create')) {
            //     self.dispatch('CreatedNotification', {detail: data});
            // }

            // if (data.op === 'EntryCreatedNotification' || data.op === 'PostCreatedNotification') {
            //     self.dispatch('MainSubjectCreatedNotification', {detail: data});
            // }
            //
        };

        const eventSource = Subscribe(endpoint, topics, cb);
        if (eventSource) {
            window.es = eventSource;
            // firefox bug: https://bugzilla.mozilla.org/show_bug.cgi?id=1803431
            if (navigator.userAgent.toLowerCase().includes('firefox')) {
                const resubscribe = () => {
                    window.es.close();
                    setTimeout(() => {
                        const eventSource = Subscribe(endpoint, topics, cb);
                        if (eventSource) {
                            window.es = eventSource;
                            window.es.onerror = resubscribe;
                        }
                    }, 10000);
                };
                window.es.onerror = resubscribe;
            }
        }
    }

    closeEs() {
        if (window.es instanceof EventSource) {
            window.es.close();
        }
    }

    getTopics() {
        let pub = true;
        const topics = [
            'count',
        ];

        if (this.userValue) {
            topics.push(`/api/users/${this.userValue}`);
            pub = true;
        }

        if (this.magazineValue) {
            topics.push(`/api/magazines/${this.magazineValue}`);
            pub = false;
        }

        if (this.entryIdValue) {
            topics.push(`/api/entries/${this.entryIdValue}`);
            pub = false;
        }

        if (this.postIdValue) {
            topics.push(`/api/posts/${this.postIdValue}`);
            pub = false;
        }

        if (pub) {
            topics.push('pub');
        }

        return topics;
    }

    fetchAndSetNewNotificationAndMessageCount() {
        fetch('/ajax/fetch_user_notifications_count')
            .then(ThrowResponseIfNotOk)
            .then((data) => {
                if ('number' === typeof data.notifications) {
                    this.setNotificationCount(data.notifications);
                }
                if ('number' === typeof data.messages) {
                    this.setMessageCount(data.messages);
                }
                window.setTimeout(() => this.fetchAndSetNewNotificationAndMessageCount(), 30 * 1000);
            });
    }

    /**
     * @param {number} count
     */
    setNotificationCount(count) {
        const notificationHeader = self.window.document.getElementById('header-notification-count');
        notificationHeader.style.display = count ? '' : 'none';
        this.setCountInSubBadgeElement(notificationHeader, count);
        const notificationDropdown = self.window.document.getElementById('dropdown-notifications-count');
        this.setCountInSubBadgeElement(notificationDropdown, count);
    }

    /**
     * @param {number} count
     */
    setMessageCount(count) {
        const messagesHeader = self.window.document.getElementById('header-messages-count');
        messagesHeader.style.display = count ? '' : 'none';
        this.setCountInSubBadgeElement(messagesHeader, count);
        const messageDropdown = self.window.document.getElementById('dropdown-messages-count');
        this.setCountInSubBadgeElement(messageDropdown, count);
    }

    /**
     * @param {Element} element
     * @param {number} count
     */
    setCountInSubBadgeElement(element, count) {
        const badgeElements = element.getElementsByClassName('badge');
        for (let i = 0; i < badgeElements.length; i++) {
            const el = badgeElements.item(i);
            el.textContent = count.toString(10);
            el.style.display = count ? '' : 'none';
        }
    }
}


================================================
FILE: assets/controllers/options_controller.js
================================================
import { Controller } from '@hotwired/stimulus';

/* stimulusFetch: 'lazy' */
export default class extends Controller {
    static targets = ['settings', 'actions'];
    static values = {
        activeTab: String,
    };

    connect() {
        const activeTabFragment = window.location.hash;

        if (!activeTabFragment) {
            return;
        }

        if ('#settings' !== activeTabFragment) {
            return;
        }

        this.actionsTarget.querySelector(`a[href="${activeTabFragment}"]`).classList.add('active');
        this.activeTabValue = activeTabFragment.substring(1);
    }

    toggleTab(e) {
        const selectedTab = e.params.tab;

        this.actionsTarget.querySelectorAll('.active').forEach((el) => el.classList.remove('active'));

        if (selectedTab === this.activeTabValue) {
            this.activeTabValue = 'none';
        } else {
            this.activeTabValue = selectedTab;

            e.currentTarget.classList.add('active');
        }
    }

    activeTabValueChanged(selectedTab) {
        if ('none' === selectedTab) {
            this.settingsTarget.style.display = 'none';

            return;
        }

        this[`${selectedTab}Target`].style.display = 'block';

        // If you were to need to hide another tab:

        //const otherTab = selectedTab === 'settings' ? 'federation' : 'settings';
        //
        //this[`${otherTab}Target`].style.display = 'none';
    }

    closeMobileSidebar() {
        document.getElementById('sidebar').classList.remove('open');
    }

    appearanceReloadRequired(event) {
        event.target.classList.add('spin');
        window.location.reload();
    }
}


================================================
FILE: assets/controllers/password_preview_controller.js
================================================
import { Controller } from '@hotwired/stimulus';

/* stimulusFetch: 'lazy' */
export default class extends Controller {

    previewButton;

    previewIcon;

    input;

    connect() {
        this.input = this.element.querySelector('[type="password"]');
        //create the preview button
        this.setupPasswordPreviewButton();
    }

    /**
     * Create the preview button and bind its event listener
     */
    setupPasswordPreviewButton() {
        const previewButton = document.createElement('div');
        previewButton.classList.add('password-preview-button', 'btn', 'btn__secondary');
        this.previewButton = previewButton;

        const previewIcon = document.createElement('i');
        previewIcon.classList.add('fas', 'fa-eye-slash');
        this.previewIcon = previewIcon;

        previewButton.append(previewIcon);
        this.element.append(previewButton);

        //setup event listener
        previewButton.addEventListener('click', () => {
            this.onPreviewButtonClick();
        });
    }

    /**
     * On press, switch out the input 'type' to show or hide the password
     */
    onPreviewButtonClick() {
        const inputType = this.input.getAttribute('type');
        if ('password' === inputType) {
            this.input.setAttribute('type', 'text');
            this.previewIcon.classList.remove('fa-eye-slash');
            this.previewIcon.classList.add('fa-eye');

        } else {
            this.input.setAttribute('type', 'password');
            this.previewIcon.classList.remove('fa-eye');
            this.previewIcon.classList.add('fa-eye-slash');
        }
    }
}


================================================
FILE: assets/controllers/post_controller.js
================================================
import { fetch, ok } from '../utils/http';
import { Controller } from '@hotwired/stimulus';
import getIntIdFromElement from '../utils/mbin';
import router from '../utils/routing';

/* stimulusFetch: 'lazy' */
export default class extends Controller {
    static targets = ['main', 'loader', 'expand', 'collapse', 'comments'];
    static values = {
        loading: Boolean,
    };

    async expandComments(event) {
        event.preventDefault();

        if (true === this.loadingValue) {
            return;
        }

        try {
            this.loadingValue = true;

            const url = router().generate('ajax_fetch_post_comments', { 'id': getIntIdFromElement(this.mainTarget) });

            let response = await fetch(url, { method: 'GET' });

            response = await ok(response);
            response = await response.json();

            this.collapseComments();

            this.commentsTarget.innerHTML = response.html;

            if (this.commentsTarget.children.length && this.commentsTarget.children[0].classList.contains('comments')) {
                const container = this.commentsTarget.children[0];
                const parentDiv = container.parentNode;

                while (container.firstChild) {
                    parentDiv.insertBefore(container.firstChild, container);
                }

                parentDiv.removeChild(container);
            }

            this.expandTarget.style.display = 'none';
            this.collapseTarget.style.display = 'block';
            this.commentsTarget.style.display = 'block';

            this.application
                .getControllerForElementAndIdentifier(document.getElementById('main'), 'lightbox')
                .connect();
            this.application
                .getControllerForElementAndIdentifier(document.getElementById('main'), 'timeago')
                .connect();
        } catch (e) {
            console.error(e);
        } finally {
            this.loadingValue = false;
        }
    }

    collapseComments(event) {
        event?.preventDefault();

        while (this.commentsTarget.firstChild) {
            this.commentsTarget.removeChild(this.commentsTarget.firstChild);
        }

        this.expandTarget.style.display = 'block';
        this.collapseTarget.style.display = 'none';
        this.commentsTarget.style.display = 'none';
    }

    async expandVoters(event) {
        event?.preventDefault();

        try {
            this.loadingValue = true;

            let response = await fetch(event.target.href, { method: 'GET' });

            response = await ok(response);
            response = await response.json();

            event.target.parentNode.innerHTML = response.html;
        } catch (e) {
            console.error(e);
        } finally {
            this.loadingValue = false;
        }
    }

    loadingValueChanged(val) {
        const subjectController = this.application.getControllerForElementAndIdentifier(this.mainTarget, 'subject');
        if (null !== subjectController) {
            subjectController.loadingValue = val;
        }
    }
}


================================================
FILE: assets/controllers/preview_controller.js
================================================
import { fetch, ok } from '../utils/http';
import { Controller } from '@hotwired/stimulus';
import router from '../utils/routing';
import { useThrottle } from 'stimulus-use';

/* stimulusFetch: 'lazy' */
export default class extends Controller {
    static values = {
        loading: Boolean,
    };

    static targets = ['container'];
    static throttles = ['show'];

    /** memoization of fetched embed response */
    fetchedResponse = {};

    connect() {
        useThrottle(this, { wait: 1000 });

        // workaround: give itself a container if it couldn't find one
        // I am not happy with this
        if (!this.hasContainerTarget && this.element.matches('span.preview')) {
            const container = this.createContainerTarget('preview-target');
            this.element.insertAdjacentElement('beforeend', container);
            console.warn('unable to find container target, creating one for itself at', this.element.lastChild);
        }
    }

    createContainerTarget(extraClasses) {
        const classes = [].concat(extraClasses ?? []);

        const div = document.createElement('div');
        div.classList.add(...classes, 'hidden');
        div.dataset.previewTarget = 'container';

        return div;
    }

    async retry(event) {
        event.preventDefault();

        this.containerTarget.replaceChildren();
        this.containerTarget.classList.add('hidden');

        await this.show(event);
    }

    async fetchEmbed(url) {
        if (this.fetchedResponse[url]) {
            return this.fetchedResponse[url];
        }

        let response = await fetch(router().generate('ajax_fetch_embed', { url }), { method: 'GET' });

        response = await ok(response);
        response = await response.json();

        this.fetchedResponse[url] = response;

        return response;
    }

    async show(event) {
        event.preventDefault();

        if (this.containerTarget.hasChildNodes()) {
            this.containerTarget.replaceChildren();
            this.containerTarget.classList.add('hidden');
            return;
        }

        try {
            this.loadingValue = true;

            const response = await this.fetchEmbed(event.params.url);

            this.containerTarget.innerHTML = response.html;
            this.containerTarget.classList.remove('hidden');
            if (event.params.ratio) {
                this.containerTarget
                    .querySelector('.preview')
                    .classList.add('ratio');
            }
            this.loadScripts(response.html);
        } catch (e) {
            console.error('preview failed: ', e);
            const failedHtml =
                `<div class="preview">
                    <a class="retry-failed" href="#"
                        data-action="preview#retry"
                        data-preview-url-param="${event.params.url}"
                        data-preview-ratio-param="${event.params.ratio}">
                            Failed to load. Click here to retry.
                    </a>
                </div>`;
            this.containerTarget.innerHTML = failedHtml;
            this.containerTarget.classList.remove('hidden');
        } finally {
            this.loadingValue = false;
        }
    }

    loadScripts(response) {
        const tmp = document.createElement('div');
        tmp.innerHTML = response;
        const el = tmp.getElementsByTagName('script');

        if (el.length) {
            const script = document.createElement('script');
            script.setAttribute('src', el[0].getAttribute('src'));
            script.setAttribute('async', 'false');

            // let exists = [...document.head.querySelectorAll('script')]
            //     .filter(value => value.getAttribute('src') >= script.getAttribute('src'));
            //
            // if (exists.length) {
            //     return;
            // }

            const head = document.head;
            head.insertBefore(script, head.firstElementChild);
        }
    }

    loadingValueChanged(val) {
        const subject = this.element.closest('.subject');
        if (null !== subject) {
            const subjectController = this.application.getControllerForElementAndIdentifier(subject, 'subject');
            subjectController.loadingValue = val;
        }
    }
}


================================================
FILE: assets/controllers/push_controller.js
================================================
import { ThrowResponseIfNotOk, fetch } from '../utils/http';
import { Controller } from '@hotwired/stimulus';

export default class extends Controller {

    applicationServerPublicKey;

    connect() {
        this.applicationServerPublicKey = this.element.dataset.applicationServerPublicKey;
        window.navigator.serviceWorker.getRegistration()
            .then((registration) => {
                return registration?.pushManager.getSubscription();
            })
            .then((pushSubscription) => {
                this.updateButtonVisibility(pushSubscription);
            })
            .catch((error) => {
                console.error('There was an error in the service worker registration method', error);
                this.element.style.display = 'none';
            });

        if (!('serviceWorker' in navigator)) {
            // Service Worker isn't supported on this browser, disable or hide UI.
            this.element.style.display = 'none';
        }

        if (!('PushManager' in window)) {
            // Push isn't supported on this browser, disable or hide UI.
            this.element.style.display = 'none';
        }
    }

    updateButtonVisibility(pushSubscription) {
        const registerBtn = document.getElementById('push-subscription-register-btn');
        const unregisterBtn = document.getElementById('push-subscription-unregister-btn');
        const testBtn = document.getElementById('push-subscription-test-btn');
        if (pushSubscription) {
            registerBtn.style.display = 'none';
            testBtn.style.display = '';
            unregisterBtn.style.display = '';
        } else {
            registerBtn.style.display = '';
            testBtn.style.display = 'none';
            unregisterBtn.style.display = 'none';
        }
    }

    async retry() {

    }

    async show() {

    }

    askPermission() {
        return new Promise(function (resolve, reject) {
            const permissionResult = Notification.requestPermission(function (result) {
                resolve(result);
            });

            if (permissionResult) {
                permissionResult.then(resolve, reject);
            }
        })
            .then(function (permissionResult) {
                if ('granted' !== permissionResult) {
                    throw new Error('We weren\'t granted permission.');
                }
            });
    }

    registerPush() {
        this.askPermission()
            .then(() => window.navigator.serviceWorker.getRegistration())
            .then((registration) => {
                const subscribeOptions = {
                    userVisibleOnly: true,
                    applicationServerKey: this.applicationServerPublicKey,
                };

                return registration.pushManager.subscribe(subscribeOptions);
            })
            .then((pushSubscription) => {
                this.updateButtonVisibility(pushSubscription);
                const jsonSub = pushSubscription.toJSON();
                const payload = {
                    endpoint: pushSubscription.endpoint,
                    deviceKey: this.getDeviceKey(),
                    contentPublicKey: jsonSub.keys['p256dh'],
                    serverKey: jsonSub.keys['auth'],
                };
                return fetch('/ajax/register_push', {
                    method: 'post',
                    body: JSON.stringify(payload),
                    headers: { 'Content-Type': 'application/json' },
                });
            })
            .then((response) => {
                if (!response.ok) {
                    throw response;
                }
                return response.json();
            })
            .catch((error) => {
                console.error(error);
                this.unregisterPush();
            });
    }

    unregisterPush() {
        window.navigator.serviceWorker.getRegistration()
            .then((registration) => registration?.pushManager.getSubscription())
            .then((pushSubscription) => pushSubscription.unsubscribe())
            .then((successful) => {
                if (successful) {
                    this.updateButtonVisibility(null);
                    const payload = {
                        deviceKey: this.getDeviceKey(),
                    };
                    fetch('/ajax/unregister_push', {
                        method: 'post',
                        body: JSON.stringify(payload),
                        headers: { 'Content-Type': 'application/json' },
                    })
                        .then(ThrowResponseIfNotOk)
                        .then(() => {
                        })
                        .catch((error) => console.error(error));
                }
            })
            .catch((error) => {
                console.error('There was an error in the service worker registration method, for unsubscribing', error);
            });
    }

    testPush() {
        fetch('/ajax/test_push', { method: 'post', body: JSON.stringify({ deviceKey: this.getDeviceKey() }), headers: { 'Content-Type': 'application/json' } })
            .then((response) => {
                if (!response.ok) {
                    throw response;
                }
                return response.json();
            })
            .then(() => { })
            .catch((error) => console.error(error));
    }

    storageKeyPushSubscriptionDevice = 'push_subscription_device_key';

    getDeviceKey() {
        if (localStorage.getItem(this.storageKeyPushSubscriptionDevice)) {
            return localStorage.getItem(this.storageKeyPushSubscriptionDevice);
        }
        const subscriptionKey = crypto.randomUUID();
        localStorage.setItem(this.storageKeyPushSubscriptionDevice, subscriptionKey);
        return subscriptionKey;
    }
}


================================================
FILE: assets/controllers/rich_textarea_controller.js
================================================
import { Controller } from '@hotwired/stimulus';
import { fetch } from '../utils/http';

/* stimulusFetch: 'lazy' */
export default class extends Controller {
    connect() {
        this.element.addEventListener('keydown', this.handleInput.bind(this));
        this.element.addEventListener('blur', this.delayedClearAutocomplete.bind(this));
    }

    // map: allowed enclosure key -> max repeats
    enclosureKeys = {
        '`': 1, '"': 1, "'": 1,
        '*': 2, '_': 2, '~': 2,
    };

    emojiAutocompleteActive = false;
    mentionAutocompleteActive = false;

    abortController;
    requestActive = false;

    selectedSuggestionIndex = 0;

    handleInput (event) {
        const hasSelection = this.element.selectionStart !== this.element.selectionEnd;
        const key = event.key;

        if (event.ctrlKey && 'Enter' === key) {
            // ctrl + enter to submit form

            this.element.form.submit();
            event.preventDefault();
        } else if (event.ctrlKey && 'b' === key) {
            // ctrl + b to toggle bold

            this.toggleFormattingEnclosure('**');
            event.preventDefault();
        } else if (event.ctrlKey && 'i' === key) {
            // ctrl + i to toggle italic

            this.toggleFormattingEnclosure('_');
            event.preventDefault();
        } else if (hasSelection && key in this.enclosureKeys) {
            // toggle/cycle wrapping on selection texts

            this.toggleFormattingEnclosure(key, this.enclosureKeys[key] ?? 1);
            event.preventDefault();
        } else if (!this.emojiAutocompleteActive && !this.mentionAutocompleteActive && ':' === key) {
            this.emojiAutocompleteActive = true;
        } else if (this.emojiAutocompleteActive && ('Escape' === key || ' ' === key)) {
            this.clearAutocomplete();
        } else if (!this.emojiAutocompleteActive && !this.mentionAutocompleteActive && '@' === key) {
            this.mentionAutocompleteActive = true;
        } else if (this.mentionAutocompleteActive && ('Escape' === key || ' ' === key)) {
            this.clearAutocomplete();
        } else if (this.mentionAutocompleteActive || this.emojiAutocompleteActive) {
            if ('ArrowDown' === key || 'ArrowUp' === key) {
                if ('ArrowDown' === key) {
                    this.selectedSuggestionIndex = Math.min(this.getSuggestionElements().length-1, this.selectedSuggestionIndex + 1);
                } else if ('ArrowUp' === key) {
                    this.selectedSuggestionIndex = Math.max(0, this.selectedSuggestionIndex - 1);
                }
                this.markSelectedSuggestion();
                event.preventDefault();
            } else if ('Enter' === key) {
                this.replaceAutocompleteSearchString(this.getSelectedSuggestionReplacement());
                event.preventDefault();
            } else {
                this.fetchAutocompleteResults(this.getAutocompleteSearchString(key));
            }
        }
    }

    toggleFormattingEnclosure(encl, maxLength = 1) {
        const start = this.element.selectionStart, end = this.element.selectionEnd;
        const before = this.element.value.substring(0, start),
            inner = this.element.value.substring(start, end),
            after = this.element.value.substring(end);

        // TODO: find a way to do undo-aware text manipulations that isn't deprecated like execCommand?
        // it seems like specs never actually replaced it with anything unless i'm missing it

        // remove enclosure when it's at the max
        const finalEnclosure = encl.repeat(maxLength);
        if (before.endsWith(finalEnclosure) && after.startsWith(finalEnclosure)) {
            const outerStart = start - finalEnclosure.length,
                outerEnd = end + finalEnclosure.length;

            this.element.selectionStart = outerStart;
            this.element.selectionEnd = outerEnd;

            // no need for delete command as insertText should deletes selection by itself
            // ref: https://developer.mozilla.org/en-US/docs/Web/API/Document/execCommand#inserttext
            document.execCommand('insertText', false, inner);

            this.element.selectionStart = start - finalEnclosure.length;
            this.element.selectionEnd = end - finalEnclosure.length;
        } else {
            // add a new enclosure

            document.execCommand('insertText', false, encl + inner + encl);

            this.element.selectionStart = start + encl.length;
            this.element.selectionEnd = end + encl.length;
        }
    }

    delayedClearAutocomplete() {
        window.setTimeout(() => this.clearAutocomplete(), 100);
    }

    clearAutocomplete() {
        this.selectedSuggestionIndex = 0;
        this.emojiAutocompleteActive = false;
        this.mentionAutocompleteActive = false;
        this.abortController.abort();
        this.requestActive = false;
        document.getElementById('user-suggestions')?.remove();
        document.getElementById('emoji-suggestions')?.remove();
    }

    getAutocompleteSearchString(key) {
        const [wordStart, wordEnd] = this.getAutocompleteSearchStringStartAndEnd();
        let val = this.element.value.substring(wordStart, wordEnd+1);

        if (1 === key.length) {
            val += key;
        }

        return val;
    }

    getAutocompleteSearchStringStartAndEnd() {
        const value = this.element.value;
        const selection = this.element.selectionStart-1;
        let cursor = selection;
        const breakCharacters = ' \n\t*#?!';
        while (0 < cursor) {
            cursor--;
            if (breakCharacters.includes(value[cursor])) {
                cursor++;
                break;
            }
        }
        const wordStart = cursor;
        cursor = selection;

        while (cursor < value.length) {
            cursor++;
            if (breakCharacters.includes(value[cursor])) {
                cursor--;
                break;
            }
        }
        const wordEnd = cursor;

        return [wordStart, wordEnd];
    }

    fetchAutocompleteResults(searchText) {
        if (this.requestActive) {
            this.abortController.abort();
        }

        if (this.mentionAutocompleteActive) {
            this.abortController = new AbortController();
            this.requestActive = true;
            fetch(`/ajax/fetch_users_suggestions/${searchText}`, { signal: this.abortController.signal })
                .then((response) => response.json())
                .then((data) => {
                    this.fillSuggestions(data.html);
                    this.requestActive = false;
                })
                .catch(() => {});
        } else if (this.emojiAutocompleteActive) {
            this.abortController = new AbortController();
            this.requestActive = true;
            fetch(`/ajax/fetch_emoji_suggestions?query=${searchText}`, { signal: this.abortController.signal })
                .then((response) => response.json())
                .then((data) => {
                    this.fillSuggestions(data.html);
                    this.requestActive = false;
                })
                .catch(() => {});
        }
    }

    replaceAutocompleteSearchString(replaceText) {
        const [wordStart, wordEnd] = this.getAutocompleteSearchStringStartAndEnd();
        this.element.selectionStart = wordStart;
        this.element.selectionEnd = wordEnd+1;
        document.execCommand('insertText', false, replaceText);
        this.clearAutocomplete();
        const resultCursor = wordStart + replaceText.length;
        this.element.selectionStart = resultCursor;
        this.element.selectionEnd = resultCursor;
    }

    fillSuggestions (html) {
        const id = this.mentionAutocompleteActive ? 'user-suggestions' : 'emoji-suggestions';
        let element = document.getElementById(id);
        if (element) {
            element.outerHTML = html;
        } else {
            element = this.element.insertAdjacentElement('afterend', document.createElement('div'));
            element.outerHTML = html;
        }
        for (const suggestion of this.getSuggestionElements()) {
            suggestion.onclick = (event) => {
                const value = event.target.getAttribute('data-replace') ?? event.target.outerText;
                this.element.focus();
                this.replaceAutocompleteSearchString(value);
            };
        }
        this.markSelectedSuggestion();
    }

    markSelectedSuggestion() {
        let i = 0;
        for (const suggestion of this.getSuggestionElements()) {
            if (i === this.selectedSuggestionIndex) {
                suggestion.classList.add('selected');
            } else {
                suggestion.classList.remove('selected');
            }
            i++;
        }
    }

    getSelectedSuggestionReplacement() {
        let i = 0;
        for (const suggestion of this.getSuggestionElements()) {
            if (i === this.selectedSuggestionIndex) {
                suggestion.classList.add('selected');
                return suggestion.getAttribute('data-replace') ?? suggestion.outerText;
            }
            i++;
        }
        return null;
    }

    getSuggestionElements() {
        const suggestions = document.getElementById(this.mentionAutocompleteActive ? 'user-suggestions' : 'emoji-suggestions');
        return suggestions.querySelectorAll('.suggestion');
    }
}


================================================
FILE: assets/controllers/scroll_top_controller.js
================================================
import { Controller } from '@hotwired/stimulus';

export default class extends Controller {
    connect() {
        const self = this;
        window.onscroll = function () {
            self.scroll();
        };
    }

    scroll() {
        if (
            20 < document.body.scrollTop ||
            20 < document.documentElement.scrollTop
        ) {
            this.element.style.display = 'block';
        } else {
            this.element.style.display = 'none';
        }
    }

    increaseCounter() {
        const counter = this.element.querySelector('small');
        counter.innerHTML = parseInt(counter.innerHTML) + 1;
        counter.classList.remove('hidden');
    }

    scrollTop() {
        document.body.scrollTop = 0;
        document.documentElement.scrollTop = 0;
    }
}


================================================
FILE: assets/controllers/selection_controller.js
================================================
import { Controller } from '@hotwired/stimulus';

/* stimulusFetch: 'lazy' */
export default class extends Controller {
    changeLocation(event) {
        window.location = event.currentTarget.value;
    }
}


================================================
FILE: assets/controllers/settings_row_enum_controller.js
================================================
import { Controller } from '@hotwired/stimulus';

export default class extends Controller {
    /**
     * Calls the action at the given path when the value changes
     * @param actionPath {string} - The path to the action to be called
     * @param reloadRequired {boolean} - Whether the page needs to be reloaded after the action is called
     */
    change({ params: { actionPath, reloadRequired } }) {
        return fetch(actionPath).then(() => {
            if (reloadRequired) {
                document.querySelector('.settings-list').classList.add('reload-required');
            }
        });
    }
}


================================================
FILE: assets/controllers/settings_row_switch_controller.js
================================================
import { Controller } from '@hotwired/stimulus';

export default class extends Controller {
    /**
     * Calls the action at the given path when the toggle is checked or unchecked
     * @param target {HTMLInputElement} - The checkbox element of the toggle that was clicked
     * @param truePath {string} - The path to the action to be called when the toggle is checked
     * @param falsePath {string} - The path to the action to be called when the toggle is unchecked
     * @param reloadRequired {boolean} - Whether the page needs to be reloaded after the action is called
     */
    toggle({ target, params: { truePath, falsePath, reloadRequired } }) {
        const path = target.checked ? truePath : falsePath;
        return fetch(path).then(() => {
            if (reloadRequired) {
                document.querySelector('.settings-list').classList.add('reload-required');
            }
        });
    }
}


================================================
FILE: assets/controllers/subject_controller.js
================================================
import { fetch, ok } from '../utils/http';
import getIntIdFromElement, { getDepth, getLevel, getTypeFromNotification } from '../utils/mbin';
import { Controller } from '@hotwired/stimulus';
import router from '../utils/routing';
import { useIntersection } from 'stimulus-use';

/* stimulusFetch: 'lazy' */
export default class extends Controller {
    static previewInit = false;
    static targets = ['loader', 'more', 'container', 'commentsCounter', 'favCounter', 'upvoteCounter', 'downvoteCounter'];
    static values = {
        loading: Boolean,
        isOnCombined: Boolean,
    };
    static sendBtnLabel = null;

    connect() {
        this.wireMoreFocusClassAdjustment();

        if (this.element.classList.contains('show-preview')) {
            useIntersection(this);
        }

        this.wireTouchEvent();
    }

    async getForm(event) {
        event.preventDefault();

        if ('' !== this.containerTarget.innerHTML.trim()) {
            if (false === confirm('Do you really want to leave?')) {
                return;
            }
        }

        try {
            this.loadingValue = true;

            let response = await fetch(event.target.href, { method: 'GET' });

            response = await ok(response);
            response = await response.json();

            this.containerTarget.style.display = 'block';
            this.containerTarget.innerHTML = response.form;

            const textarea = this.containerTarget.querySelector('textarea');
            if (textarea) {
                if ('' !== textarea.value) {
                    let firstLineEnd = textarea.value.indexOf('\n');
                    if (-1 === firstLineEnd) {
                        firstLineEnd = textarea.value.length;
                        textarea.value = textarea.value.slice(0, firstLineEnd) + ' ' + textarea.value.slice(firstLineEnd);
                        textarea.selectionStart = firstLineEnd + 1;
                        textarea.selectionEnd = firstLineEnd + 1;
                    } else {
                        textarea.value = textarea.value.slice(0, firstLineEnd) + ' ' + textarea.value.slice(firstLineEnd);
                        textarea.selectionStart = firstLineEnd + 1;
                        textarea.selectionEnd = firstLineEnd + 1;
                    }
                }

                textarea.focus();
            }
        } catch {
            window.location.href = event.target.href;
        } finally {
            this.loadingValue = false;
            popover.togglePopover(false);
        }
    }

    async sendForm(event) {
        event.preventDefault();

        const form = event.target.closest('form');
        const url = form.action;

        try {
            this.loadingValue = true;
            self.sendBtnLabel = event.target.innerHTML;
            event.target.disabled = true;
            event.target.innerHTML = 'Sending...';

            let response = await fetch(url, {
                method: 'POST',
                body: new FormData(form),
            });

            response = await ok(response);
            response = await response.json();

            if (response.form) {
                this.containerTarget.style.display = 'block';
                this.containerTarget.innerHTML = response.form;
            } else if (form.classList.contains('replace')) {
                const div = document.createElement('div');
                div.innerHTML = response.html;
                div.firstElementChild.className = this.element.className;

                this.element.innerHTML = div.firstElementChild.innerHTML;
            } else {
                const div = document.createElement('div');
                div.innerHTML = response.html;

                const level = getLevel(this.element);
                const depth = getDepth(this.element);

                div.firstElementChild.classList.remove('comment-level--1');
                div.firstElementChild.classList.add('comment-level--' + (10 <= level ? 10 : level + 1));
                div.firstElementChild.dataset.commentCollapseDepthValue = depth + 1;

                if (this.element.nextElementSibling && this.element.nextElementSibling.classList.contains('comments')) {
                    this.element.nextElementSibling.appendChild(div.firstElementChild);
                    this.element.classList.add('mb-0');
                } else {
                    this.element.parentNode.insertBefore(div.firstElementChild, this.element.nextSibling);
                }

                this.containerTarget.style.display = 'none';
                this.containerTarget.innerHTML = '';
            }
        } catch (e) {
            console.error(e);
            // this.containerTarget.innerHTML = '';
        } finally {
            this.application
                .getControllerForElementAndIdentifier(document.getElementById('main'), 'lightbox')
                .connect();
            this.application
                .getControllerForElementAndIdentifier(document.getElementById('main'), 'timeago')
                .connect();
            this.loadingValue = false;
            event.target.disabled = false;
            event.target.innerHTML = self.sendBtnLabel;
        }

    }

    async favourite(event) {
        event.preventDefault();

        const form = event.target.closest('form');

        try {
            this.loadingValue = true;

            let response = await fetch(form.action, {
                method: 'POST',
                body: new FormData(form),
            });

            response = await ok(response);
            response = await response.json();

            form.innerHTML = response.html;
        } catch {
            form.submit();
        } finally {
            this.loadingValue = false;
        }
    }

    async vote(event) {
        event.preventDefault();

        const form = event.target.closest('form');

        try {
            this.loadingValue = true;

            let response = await fetch(form.action, {
                method: 'POST',
                body: new FormData(form),
            });

            response = await ok(response);
            response = await response.json();

            event.target.closest('.vote').outerHTML = response.html;
        } catch {
            form.submit();
        } finally {
            this.loadingValue = false;
        }
    }

    loadingValueChanged(val) {
        const submitButton = this.containerTarget.querySelector('form button[type="submit"]');

        if (true === val) {
            if (submitButton) {
                submitButton.disabled = true;
            }
            this.loaderTarget.style.display = 'block';
        } else {
            if (submitButton) {
                submitButton.disabled = false;
            }
            this.loaderTarget.style.display = 'none';
        }
    }

    async showModPanel(event) {
        event.preventDefault();

        let container = this.element.querySelector('.moderate-inline');
        if (null !== container) {
            // moderate panel was already added to this post, toggle
            // hidden on it to show/hide it and exit
            container.classList.toggle('hidden');
            return;
        }

        container = document.createElement('div');
        container.classList.add('moderate-inline');
        this.element.insertAdjacentHTML('beforeend', container.outerHTML);

        try {
            this.loadingValue = true;

            let response = await fetch(event.target.href);

            response = await ok(response);
            response = await response.json();

            this.element.querySelector('.moderate-inline').insertAdjacentHTML('afterbegin', response.html);
        } catch {
            window.location.href = event.target.href;
        } finally {
            this.loadingValue = false;
        }
    }

    notification(data) {
        if (data.detail.parentSubject && this.element.id === data.detail.parentSubject.htmlId) {
            if (data.detail.op.endsWith('CommentDeletedNotification') || data.detail.op.endsWith('CommentCreatedNotification')) {
                this.updateCommentCounter(data);
            }
        }

        if (this.element.id !== data.detail.htmlId) {
            return;
        }

        if (data.detail.op.endsWith('EditedNotification')) {
            this.refresh(data);
            return;
        }

        if (data.detail.op.endsWith('DeletedNotification')) {
            this.element.remove();
            return;
        }

        if (data.detail.op.endsWith('Vote')) {
            this.updateVotes(data);
            return;
        }

        if (data.detail.op.endsWith('Favourite')) {
            this.updateFavourites(data);
            return;
        }
    }

    async refresh(data) {
        try {
            this.loadingValue = true;

            const url = router().generate(`ajax_fetch_${getTypeFromNotification(data)}`, { id: getIntIdFromElement(this.element) });

            let response = await fetch(url);

            response = await ok(response);
            response = await response.json();

            const div = document.createElement('div');
            div.innerHTML = response.html;

            div.firstElementChild.className = this.element.className;
            this.element.outerHTML = div.firstElementChild.outerHTML;
        } catch {
        } finally {
            this.loadingValue = false;
        }
    }

    updateVotes(data) {
        this.upvoteCounterTarget.innerText = `(${data.detail.up})`;

        if (0 < data.detail.up) {
            this.upvoteCounterTarget.classList.remove('hidden');
        } else {
            this.upvoteCounterTarget.classList.add('hidden');
        }

        if (this.hasDownvoteCounterTarget) {
            this.downvoteCounterTarget.innerText = data.detail.down;
        }
    }

    updateFavourites(data) {
        if (this.hasFavCounterTarget) {
            this.favCounterTarget.innerText = data.detail.count;
        }
    }

    updateCommentCounter(data) {
        if (data.detail.op.endsWith('CommentCreatedNotification') && this.hasCommentsCounterTarget) {
            this.commentsCounterTarget.innerText = parseInt(this.commentsCounterTarget.innerText) + 1;
        }

        if (data.detail.op.endsWith('CommentDeletedNotification') && this.hasCommentsCounterTarget) {
            this.commentsCounterTarget.innerText = parseInt(this.commentsCounterTarget.innerText) - 1;
        }
    }

    async removeImage(event) {
        event.preventDefault();

        try {
            this.loadingValue = true;

            let response = await fetch(event.target.parentNode.formAction, { method: 'POST' });

            response = await ok(response);
            await response.json();

            event.target.parentNode.previousElementSibling.remove();
            event.target.parentNode.nextElementSibling.classList.remove('hidden');
            event.target.parentNode.remove();
        } catch {
        } finally {
            this.loadingValue = false;
        }
    }

    appear() {
        if (this.previewInit) {
            return;
        }

        const prev = this.element.querySelectorAll('.show-preview');

        prev.forEach((el) => {
            el.click();
        });

        this.previewInit = true;
    }

    wireMoreFocusClassAdjustment() {
        const self = this;
        if (this.hasMoreTarget) {
            // Add z-5 (higher z-index with !important) to the element when more button is focused (eg. clicked)
            // Remove z-5 from other elements in the same parent
            this.moreTarget.addEventListener('focusin', () => {
                self.element.parentNode
                    .querySelectorAll('.z-5')
                    .forEach((el) => {
                        el.classList.remove('z-5');
                    });
                this.element.classList.add('z-5');
            });

            // During a mouse hover, remove z-5 from other elements in the same parent
            // and clear :focus-within from any focused element inside the same parent
            this.moreTarget.addEventListener('mouseenter', () => {
                // Remove z-5 from other elements in the same parent
                const parent = self.element.parentNode;
                parent
                    .querySelectorAll('.z-5')
                    .forEach((el) => {
                        el.classList.remove('z-5');
                    });

                // Clear keyboard/mouse focus from any element inside the same
                // parent so that :focus-within is removed from the old
                // element without assigning focus to the hovered one.
                const active = document.activeElement;
                if (active && parent.contains(active) && !self.moreTarget.contains(active)) {
                    try {
                        active.blur();
                    } catch {
                        // ignore environments where blur may throw
                    }
                }
            });
        }
    }

    wireTouchEvent() {
        if (this.isOnCombinedValue) {
            this.wireTouchEventCombined();
        } else {
            this.wireTouchEventRegular();
        }
    }

    wireTouchEventRegular() {
        // if in a list and the click is made via touch, open the post
        if (!this.element.classList.contains('isSingle')) {
            this.element.querySelector('.content')?.addEventListener('click', (e) => {
                if (this.filterClickEvent(e)) {
                    return;
                }

                if ('touch' === e.pointerType) {
                    const link = this.element.querySelector('header a:not(.user-inline)');
                    if (link) {
                        const href = link.getAttribute('href');
                        if (href) {
                            document.location.href = href;
                        }
                    }
                }
            });
        }
    }

    wireTouchEventCombined() {
        // if on Combined view, open the post via click on card
        this.element.addEventListener('click', (e) => {
            if (this.filterClickEvent(e)) {
                return;
            }

            const link = this.element.querySelector('footer span[data-subject-target="commentsCounter"]')?.parentElement;
            if (link) {
                let href = link.getAttribute('href');
                href = href.substring(0, href.length - '#comments'.length);
                if (href) {
                    document.location.href = href;
                }
            } else {
                const link = this.element.querySelector('footer span[data-subject-x="subjectLink"]')?.parentElement;
                if (link) {
                    const href = link.getAttribute('href');
                    if (href) {
                        document.location.href = href;
                    }
                }
            }
        });
    }

    filterClickEvent(e) {
        if (e.defaultPrevented) {
            return true;
        }

        const filteredElementTypes = [
            'a',
            'button',
            'select',
            'option',
            'input',
            'textarea',
            'details',
            'summary',
        ];
        for (const type of filteredElementTypes) {
            if (e.target.nodeName?.toLowerCase() === type || e.target.tagName?.toLowerCase() === type) {
                return true;
            }
        }

        // ignore click on images
        const figures = this.element.querySelectorAll('figure');
        if (
            figures.entries().some(([, elem]) => elem.contains(e.target))
        ) {
            return true;
        }

        return false;
    }
}


================================================
FILE: assets/controllers/subject_list_controller.js
================================================
import { fetch, ok } from '../utils/http';
import { getDepth, getLevel, getTypeFromNotification } from '../utils/mbin';
import { Controller } from '@hotwired/stimulus';
import router from '../utils/routing';

/* stimulusFetch: 'lazy' */
export default class extends Controller {
    addComment(data) {
        if (!document.getElementById(data.detail.parentSubject.htmlId)) {
            return;
        }

        this.addMainSubject(data);
    }

    async addMainSubject(data) {
        try {
            const url = router().generate(`ajax_fetch_${getTypeFromNotification(data)}`, { id: data.detail.id });

            let response = await fetch(url);

            response = await ok(response);
            response = await response.json();

            if (!data.detail.parent) {
                if (!document.getElementById(data.detail.htmlId)) {
                    this.element.insertAdjacentHTML('afterbegin', response.html);
                }

                return;
            }

            const parent = document.getElementById(data.detail.parent.htmlId);
            if (parent) {
                const div = document.createElement('div');
                div.innerHTML = response.html;

                const level = getLevel(parent);
                const depth = getDepth(parent);

                div.firstElementChild.classList.remove('comment-level--1');
                div.firstElementChild.classList.add('comment-level--' + (10 <= level ? 10 : level + 1));
                div.firstElementChild.dataset.commentCollapseDepthValue = depth + 1;

                let current = parent;
                while (current) {
                    if (!current.nextElementSibling) {
                        break;
                    }
                    if ('undefined' === current.nextElementSibling.dataset.subjectParentValue) {
                        break;
                    }
                    if (current.nextElementSibling.dataset.subjectParentValue !== div.firstElementChild.dataset.subjectParentValue
                        && getLevel(current.nextElementSibling) <= level) {
                        break;
                    }

                    current = current.nextElementSibling;
                }

                if (!document.getElementById(div.firstElementChild.id)) {
                    current.insertAdjacentElement('afterend', div.firstElementChild);
                }
            }
        } catch {
        } finally {
            this.application
                .getControllerForElementAndIdentifier(document.getElementById('main'), 'timeago')
                .connect();
        }
    }

    async addCommentOverview(data) {
        try {
            const parent = document.getElementById(data.detail.parentSubject.htmlId);
            if (!parent) {
                return;
            }

            const url = router().generate(`ajax_fetch_${getTypeFromNotification(data)}`, { id: data.detail.id });

            let response = await fetch(url);

            response = await ok(response);
            response = await response.json();

            const div = document.createElement('div');
            div.innerHTML = response.html;

            div.firstElementChild.classList.add('comment-level--2');

            if (!parent.nextElementSibling || !parent.nextElementSibling.classList.contains('comments')) {
                const comments = document.createElement('div');
                comments.classList.add('comments', 'post-comments', 'comments-tree');
                parent.insertAdjacentElement('afterend', comments);
            }

            parent.classList.add('mb-0');
            if (parent.nextElementSibling.querySelector('#' + data.detail.htmlId)) {
                return;
            }

            parent.nextElementSibling.appendChild(div.firstElementChild);
        } catch {
        } finally {
            this.application
                .getControllerForElementAndIdentifier(document.getElementById('main'), 'timeago')
                .connect();
        }
    }

    increaseCounter() {
        this.application
            .getControllerForElementAndIdentifier(document.getElementById('scroll-top'), 'scroll-top')
            .increaseCounter();
    }
}


================================================
FILE: assets/controllers/subs_controller.js
================================================
import { fetch, ok } from '../utils/http';
import { Controller } from '@hotwired/stimulus';

/* stimulusFetch: 'lazy' */
export default class extends Controller {
    static values = {
        loading: Boolean,
    };

    async send(event) {
        event.preventDefault();

        const form = event.target.closest('form');

        try {
            this.loadingValue = true;

            let response = await fetch(form.action, {
                method: 'POST',
                body: new FormData(form),
            });

            response = await ok(response);
            response = await response.json();

            this.element.outerHTML = response.html;
        } catch {
            form.submit();
        } finally {
            this.loadingValue = false;
        }
    }
}


================================================
FILE: assets/controllers/subs_panel_controller.js
================================================
import { Controller } from '@hotwired/stimulus';
import router from '../utils/routing';

const KBIN_SUBSCRIPTIONS_IN_SEPARATE_SIDEBAR = 'kbin_subscriptions_in_separate_sidebar';
const KBIN_SUBSCRIPTIONS_SIDEBARS_SAME_SIDE = 'kbin_subscriptions_sidebars_same_side';

/* stimulusFetch: 'lazy' */
export default class extends Controller {
    static values = {
        sidebarPosition: String,
    };

    generateSettingsRoute(key, value) {
        return router().generate('theme_settings', { key, value });
    }

    async reattach() {
        await window.fetch(
            this.generateSettingsRoute(KBIN_SUBSCRIPTIONS_IN_SEPARATE_SIDEBAR, 'false'),
        );
        window.location.reload();
    }

    async popLeft() {
        await window.fetch(
            this.generateSettingsRoute(KBIN_SUBSCRIPTIONS_IN_SEPARATE_SIDEBAR, 'true'),
        );
        await window.fetch(
            this.generateSettingsRoute(
                KBIN_SUBSCRIPTIONS_SIDEBARS_SAME_SIDE,
                ('left' === this.sidebarPositionValue ? 'true' : 'false'),
            ),
        );
        window.location.reload();
    }

    async popRight() {
        await window.fetch(
            this.generateSettingsRoute(KBIN_SUBSCRIPTIONS_IN_SEPARATE_SIDEBAR, 'true'),
        );
        await window.fetch(
            this.generateSettingsRoute(
                KBIN_SUBSCRIPTIONS_SIDEBARS_SAME_SIDE,
                ('left' !== this.sidebarPositionValue ? 'true' : 'false'),
            ),
        );
        window.location.reload();
    }
}


================================================
FILE: assets/controllers/thumb_controller.js
================================================
import { Controller } from '@hotwired/stimulus';

/* stimulusFetch: 'lazy' */
export default class extends Controller {
    /**
     * Called on mouseover
     * @param {*} event
     * @returns
     */
    async adultImageHover(event) {
        if (false === event.target.matches(':hover')) {
            return;
        }

        event.target.style.filter = 'none';
    }

    /**
     * Called on mouseout
     * @param {*} event
     */
    async adultImageHoverOut(event) {
        event.target.style.filter = 'blur(8px)';
    }
}


================================================
FILE: assets/controllers/timeago_controller.js
================================================
import { Controller } from '@hotwired/stimulus';
/* eslint-disable camelcase -- zh_TW is a specific identifier */
// eslint-disable-next-line -- grouping timeago imports here is more readable than properly sorting
import * as timeago from 'timeago.js';
import bg from 'timeago.js/lib/lang/bg';
import da from 'timeago.js/lib/lang/da';
import de from 'timeago.js/lib/lang/de';
import el from 'timeago.js/lib/lang/el';
import en from 'timeago.js/lib/lang/en_US';
import es from 'timeago.js/lib/lang/es';
import fr from 'timeago.js/lib/lang/fr';
import gl from 'timeago.js/lib/lang/gl';
import it from 'timeago.js/lib/lang/it';
import ja from 'timeago.js/lib/lang/ja';
import nl from 'timeago.js/lib/lang/nl';
import pl from 'timeago.js/lib/lang/pl';
import pt_BR from 'timeago.js/lib/lang/pt_BR';
import ru from 'timeago.js/lib/lang/ru';
import tr from 'timeago.js/lib/lang/tr';
import uk from 'timeago.js/lib/lang/uk';
import zh_TW from 'timeago.js/lib/lang/zh_TW';

/* stimulusFetch: 'lazy' */
export default class extends Controller {
    connect() {
        const elems = document.querySelectorAll('.timeago');

        if (!elems.length) {
            return;
        }

        const lang = document.documentElement.lang;
        const languages = { bg, da, de, el, en, es, fr, gl, it, ja, nl, pl, pt_BR, ru, tr, uk, zh_TW };

        if (languages[lang]) {
            timeago.register(lang, languages[lang]);
            timeago.render(elems, lang);
        } else {
            timeago.render(elems);
        }
    }
}


================================================
FILE: assets/controllers.json
================================================
{
    "controllers": {
        "@symfony/ux-autocomplete": {
            "autocomplete": {
                "enabled": true,
                "fetch": "eager",
                "autoimport": {
                    "tom-select/dist/css/tom-select.default.css": true,
                    "tom-select/dist/css/tom-select.bootstrap4.css": false,
                    "tom-select/dist/css/tom-select.bootstrap5.css": false
                }
            }
        },
        "@symfony/ux-chartjs": {
            "chart": {
                "enabled": true,
                "fetch": "eager"
            }
        }
    },
    "entrypoints": []
}


================================================
FILE: assets/email.js
================================================
import './styles/emails.scss';


================================================
FILE: assets/stimulus_bootstrap.js
================================================
// register any custom, 3rd party controllers here
// app.register('some_controller_name', SomeImportedController);
import { startStimulusApp } from '@symfony/stimulus-bridge';

// Registers Stimulus controllers from controllers.json and in the controllers/ directory
export const app = startStimulusApp(require.context(
    '@symfony/stimulus-bridge/lazy-controller-loader!./controllers',
    true,
    /\.[jt]sx?$/,
));


================================================
FILE: assets/styles/_shared.scss
================================================
// a file for shared CSS styling between multiple components or views

.user-badge {
  border: var(--kbin-section-border);
  padding: 0.25rem 0.5rem;
  margin-left: .25rem;
  border-radius: var(--kbin-rounded-edges-radius);
}


================================================
FILE: assets/styles/_variables.scss
================================================
$grid-breakpoints: (
        xs: 0,
        sm: 690px,
        md: 768px,
        lg: 992px,
        xl: 1200px,
        xxl: 1400px
) !default;

$aspect-ratios: (
        "1x1": 100%,
        "4x3": calc(3 / 4 * 100%),
        "16x9": calc(9 / 16 * 100%),
        "21x9": calc(9 / 21 * 100%)
) !default;

:root {
  // ---------------------------------------------------------------------------
  // Variables that are common to all themes
  // ---------------------------------------------------------------------------

  --kbin-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;

  --kbin-rounded-edges-radius: .5rem;

  // buttons
  --kbin-button-danger-bg:  #842029;
  --kbin-button-danger-hover-bg: #921d27;
  --kbin-button-danger-text-color: #fff;
  --kbin-button-danger-text-hover-color: #fff;
  --kbin-button-danger-border: 1px dashed #842029;

  // topbar
  --kbin-topbar-link-color: #fff;

  // alerts
  --kbin-alert-success-bg: var(--kbin-success-color);
  --kbin-alert-success-border: 1px solid var(--kbin-success-color);
  --kbin-alert-success-text-color: #fff;
  --kbin-alert-success-link-color: #fff;

  // fontawesome
  --kbin-font-awesome-font-family: "Font Awesome 6 Free";

  // fonts
  --kbin-body-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";

  // ---------------------------------------------------------------------------
  // Default theme variables
  // ---------------------------------------------------------------------------

  --kbin-body-font-size: 1rem;
  --kbin-body-font-weight: 400;
  --kbin-body-line-height: 1.5;
  --kbin-body-text-align: left;
  --kbin-body-bg: #fff;

  --kbin-bg: #ecf0f1;
  --kbin-bg-nth: #fafafa;

  --kbin-text-color: #212529;
  --kbin-link-color: #37769e;
  --kbin-link-hover-color: #275878;
  --kbin-outline: #ff8c00 solid 4px;

  --kbin-primary-color: #61366b;
  --kbin-text-muted-color: #95a6a6;

  --kbin-success-color: #0f5132;
  --kbin-danger-color: #842029;

  --kbin-own-color: #0f5132;
  --kbin-author-color: #842029;

  // section
  --kbin-section-bg: #fff;
  --kbin-section-text-color: var(--kbin-text-color);
  --kbin-section-title-link-color: var(--kbin-link-color);
  --kbin-section-link-color: var(--kbin-link-color);
  --kbin-section-link-hover-color: var(--kbin-link-hover-color);
  --kbin-section-border: 1px solid #e5eaec;
  --kbin-author-border: 1px dashed var(--kbin-author-color);
  --kbin-own-border: 1px dashed var(--kbin-own-color);

  // meta
  --kbin-meta-bg: none;
  --kbin-meta-text-color: #606060;
  --kbin-meta-link-color: #606060;
  --kbin-meta-link-hover-color: var(--kbin-link-hover-color);
  --kbin-meta-border: 1px dashed #e5eaec;
  --kbin-avatar-border: 3px solid #ecf0f1;
  --kbin-avatar-border-active: 3px solid #d3d5d6;
  --kbin-blockquote-color: #0f5132;

  // options
  --kbin-options-bg: #fff;
  --kbin-options-text-color: #95a5a6;
  --kbin-options-link-color: #95a5a6;
  --kbin-options-link-hover-color: #32465b;
  --kbin-options-border: 1px solid #e5eaec;
  --kbin-options-link-hover-border: 3px solid #32465b;

  // forms
  --kbin-input-bg: #fff;
  --kbin-input-text-color: var(--kbin-text-color);
  --kbin-input-border-color: #e5eaec;
  --kbin-input-border: 1px solid var(--kbin-input-border-color);
  --kbin-input-placeholder-text-color: #929497;

  // buttons
  --kbin-button-primary-bg: #4e3a8c;
  --kbin-button-primary-hover-bg: #3f2e77;
  --kbin-button-primary-text-color: #fff;
  --kbin-button-primary-text-hover-color: #fff;
  --kbin-button-primary-border: 1px solid #3f2e77;

  --kbin-button-secondary-bg: #fff;
  --kbin-button-secondary-hover-bg: #f5f5f5;
  --kbin-button-secondary-text-color: var(--kbin-meta-text-color);
  --kbin-button-secondary-text-hover-color: var(--kbin-text-color);
  --kbin-button-secondary-border: 1px dashed #e5eaec;

  // header
  --kbin-header-bg: #110045;
  --kbin-header-text-color: #fff;
  --kbin-header-link-color: #fff;
  --kbin-header-link-hover-color: #e8e8e8;
  --kbin-header-link-active-bg: #0a0026;
  --kbin-header-border: 1px solid #e5eaec;
  --kbin-header-hover-border: 3px solid #fff;

  // topbar
  --kbin-topbar-bg: #0a0026;
  --kbin-topbar-active-bg: #150a37;
  --kbin-topbar-active-link-color: #fff;
  --kbin-topbar-hover-bg: #150a37;
  --kbin-topbar-border: 1px solid  #150a37;

  // sidebar
  --kbin-sidebar-header-text-color: #909ea2;
  --kbin-sidebar-header-border: 1px solid #e5eaec;
  --kbin-sidebar-settings-row-bg: #E5EAEC;
  --kbin-sidebar-settings-switch-on-color: #fff ;
  --kbin-sidebar-settings-switch-on-bg: var(--kbin-button-primary-bg);
  --kbin-sidebar-settings-switch-off-color: #fff ;
  --kbin-sidebar-settings-switch-off-bg: #b5c4c9;
  --kbin-sidebar-settings-switch-hover-bg: #9992BC;

  // vote
  --kbin-vote-bg: #f3f3f3;
  --kbin-vote-text-color: #b6b6b6;
  --kbin-vote-text-hover-color: #000;
  --kbin-upvoted-color: #0f5132;
  --kbin-downvoted-color: #842029;

  // boost
  --kbin-boosted-color: var(--kbin-upvoted-color);

  // alerts
  --kbin-alert-info-bg: #fff3cd;
  --kbin-alert-info-border: 1px solid #ffe69c;
  --kbin-alert-info-text-color: #997404;
  --kbin-alert-info-link-color: #997404;

  --kbin-alert-danger-bg: #f8d7da;
  --kbin-alert-danger-border: 1px solid #f5c2c7;
  --kbin-alert-danger-text-color: var(--kbin-danger-color);
  --kbin-alert-danger-link-color: var(--kbin-danger-color);

  // entry
  --kbin-entry-link-visited-color: #7e8f99;

  // details
  --mbin-details-border: var(--kbin-section-border);
  --mbin-details-separator-border: var(--kbin-meta-border);

  --mbin-details-detail-color: var(--kbin-link-hover-color);
  --mbin-details-spoiler-color: var(--kbin-danger-color);

  --mbin-details-detail-label: "Details";
  --mbin-details-spoiler-label: "Spoiler";
}


================================================
FILE: assets/styles/app.scss
================================================
@use '@fortawesome/fontawesome-free/scss/fontawesome';
@use '@fortawesome/fontawesome-free/scss/solid';
@use '@fortawesome/fontawesome-free/scss/regular';
@use '@fortawesome/fontawesome-free/scss/brands';
@use 'simple-icons-font/font/simple-icons';
@use 'variables';
@use 'shared';
@use 'layout/breakpoints';
@use 'layout/typo';
@use 'layout/layout';
@use 'layout/section';
@use 'layout/options';
@use 'layout/meta';
@use 'layout/tools';
@use 'layout/alerts';
@use 'layout/forms';
@use 'layout/images';
@use 'layout/icons';
@use 'components/announcement';
@use 'components/topbar';
@use 'components/header';
@use 'components/sidebar';
@use 'components/magazine';
@use 'components/domain';
@use 'components/user';
@use 'components/main';
@use 'components/vote';
@use 'components/entry';
@use 'components/comment';
@use 'components/figure_image';
@use 'components/figure_lightbox';
@use 'components/post';
@use 'components/search';
@use 'components/subject';
@use 'components/suggestions';
@use 'components/login';
@use 'components/modlog';
@use 'components/monitoring';
@use 'components/notification_switch';
@use 'components/notifications';
@use 'components/messages';
@use 'components/dropdown';
@use 'components/pagination';
@use 'components/media';
@use 'components/preview';
@use 'components/popover';
@use 'components/stats';
@use 'components/infinite_scroll';
@use 'components/sidebar-subscriptions';
@use 'components/settings_row';
@use 'components/inline_md';
@use 'components/emoji_picker';
@use 'components/filter_list';
@use 'pages/post_single';
@use 'pages/post_front';
@use 'pages/page_bookmarks';
@use 'pages/page_modlog';
@use 'pages/page_profile';
@use 'pages/page_filter_lists';
@use 'themes/kbin';
@use 'themes/default';
@use 'themes/solarized';
@use 'themes/tokyo-night';
@use 'components/tag';

@import 'glightbox/dist/css/glightbox.min.css';


================================================
FILE: assets/styles/components/_announcement.scss
================================================
.announcement {
  padding: 0.75rem;
  position: relative;

  p {
    margin: 0;
    text-align: center;
  }

  a{
    font-weight: bold;
  }

  &__info {
    background: var(--kbin-alert-info-bg);
    border: var(--kbin-alert-info-border);
    color: var(--kbin-alert-info-text-color);

    a {
      color: var(--kbin-alert-info-link-color);    
    }
  }

}


================================================
FILE: assets/styles/components/_comment.scss
================================================
@use "sass:list";
@use "sass:string";
@use '../layout/breakpoints' as b;
@use '../mixins/animations' as ani;
@use '../mixins/mbin';

$levels: ('#ac5353', '#71ac53', '#ffa500', '#538eac', '#6253ac', '#ac53ac', '#ac5353', '#2b7070ff', '#b9ab52', '#808080ff');
$comment-margin-xl: 1rem;
$comment-margin-lg: .5rem;
$comment-margin-sm: .3rem;

.comment-add {
  .row {
    margin-bottom: 0;
  }

  @include b.media-breakpoint-down(sm) {
    .params {
      display: block;

      div {
        margin-bottom: 1rem;
      }

      > div:last-of-type {
        margin-bottom: 0;
      }
    }
  }
}

.comment {
  display: grid;
  font-size: .9rem;
  grid-gap: .5rem;
  grid-template-areas: "avatar header aside"
                         "avatar body body"
                         "avatar footer footer"
                         "moderate moderate moderate";
  grid-template-columns: min-content auto min-content;
  margin: .5rem 0;
  padding: 0.5rem 0.75rem;
  position: relative;
  z-index: 2;

  @include b.media-breakpoint-down(sm) {
    grid-template-areas: "avatar header aside"
                         "body body body"
                         "footer footer footer"
                         "moderate moderate moderate";
  }

  &:hover,
  &:focus-visible {
    z-index: 3;
  }

  header {
    color: var(--kbin-meta-text-color);
    font-size: .8rem;
    grid-area: header;
    opacity: .75;

    a 
Download .txt
gitextract_vqs4lfsd/

├── .devcontainer/
│   ├── apache-vhost.conf
│   ├── devcontainer.json
│   └── php_config.ini
├── .dockerignore
├── .editorconfig
├── .github/
│   ├── ISSUE_TEMPLATE/
│   │   ├── bug_report.md
│   │   └── feature_request.md
│   ├── PULL_REQUEST_TEMPLATE/
│   │   └── pull_request_template.md
│   ├── dependabot.yml
│   └── workflows/
│       ├── action.yaml
│       ├── build-and-publish-pipeline-image.yaml
│       ├── build-pipeline-image.yaml
│       ├── contrib.yaml
│       ├── psalm.yml
│       └── stale.yml
├── .gitignore
├── .php-cs-fixer.dist.php
├── C4.md
├── CONTRIBUTING.md
├── LICENSE
├── LICENSES/
│   └── Zlib.txt
├── README.md
├── UPGRADE.md
├── assets/
│   ├── app.js
│   ├── controllers/
│   │   ├── autogrow_controller.js
│   │   ├── clipboard_controller.js
│   │   ├── collapsable_controller.js
│   │   ├── comment_collapse_controller.js
│   │   ├── confirmation_controller.js
│   │   ├── entry_link_create_controller.js
│   │   ├── form_collection_controller.js
│   │   ├── html_refresh_controller.js
│   │   ├── image_upload_controller.js
│   │   ├── infinite_scroll_controller.js
│   │   ├── input_length_controller.js
│   │   ├── lightbox_controller.js
│   │   ├── markdown_toolbar_controller.js
│   │   ├── mbin_controller.js
│   │   ├── mentions_controller.js
│   │   ├── notifications_controller.js
│   │   ├── options_controller.js
│   │   ├── password_preview_controller.js
│   │   ├── post_controller.js
│   │   ├── preview_controller.js
│   │   ├── push_controller.js
│   │   ├── rich_textarea_controller.js
│   │   ├── scroll_top_controller.js
│   │   ├── selection_controller.js
│   │   ├── settings_row_enum_controller.js
│   │   ├── settings_row_switch_controller.js
│   │   ├── subject_controller.js
│   │   ├── subject_list_controller.js
│   │   ├── subs_controller.js
│   │   ├── subs_panel_controller.js
│   │   ├── thumb_controller.js
│   │   └── timeago_controller.js
│   ├── controllers.json
│   ├── email.js
│   ├── stimulus_bootstrap.js
│   ├── styles/
│   │   ├── _shared.scss
│   │   ├── _variables.scss
│   │   ├── app.scss
│   │   ├── components/
│   │   │   ├── _announcement.scss
│   │   │   ├── _comment.scss
│   │   │   ├── _domain.scss
│   │   │   ├── _dropdown.scss
│   │   │   ├── _emoji_picker.scss
│   │   │   ├── _entry.scss
│   │   │   ├── _figure_image.scss
│   │   │   ├── _figure_lightbox.scss
│   │   │   ├── _filter_list.scss
│   │   │   ├── _header.scss
│   │   │   ├── _infinite_scroll.scss
│   │   │   ├── _inline_md.scss
│   │   │   ├── _login.scss
│   │   │   ├── _magazine.scss
│   │   │   ├── _main.scss
│   │   │   ├── _media.scss
│   │   │   ├── _messages.scss
│   │   │   ├── _modlog.scss
│   │   │   ├── _monitoring.scss
│   │   │   ├── _notification_switch.scss
│   │   │   ├── _notifications.scss
│   │   │   ├── _pagination.scss
│   │   │   ├── _popover.scss
│   │   │   ├── _post.scss
│   │   │   ├── _preview.scss
│   │   │   ├── _search.scss
│   │   │   ├── _settings_row.scss
│   │   │   ├── _sidebar-subscriptions.scss
│   │   │   ├── _sidebar.scss
│   │   │   ├── _stats.scss
│   │   │   ├── _subject.scss
│   │   │   ├── _suggestions.scss
│   │   │   ├── _tag.scss
│   │   │   ├── _topbar.scss
│   │   │   ├── _user.scss
│   │   │   └── _vote.scss
│   │   ├── emails.scss
│   │   ├── layout/
│   │   │   ├── _alerts.scss
│   │   │   ├── _breakpoints.scss
│   │   │   ├── _forms.scss
│   │   │   ├── _icons.scss
│   │   │   ├── _images.scss
│   │   │   ├── _layout.scss
│   │   │   ├── _meta.scss
│   │   │   ├── _normalize.scss
│   │   │   ├── _options.scss
│   │   │   ├── _section.scss
│   │   │   ├── _tools.scss
│   │   │   └── _typo.scss
│   │   ├── mixins/
│   │   │   ├── animations.scss
│   │   │   ├── mbin.scss
│   │   │   ├── theme-dark.scss
│   │   │   ├── theme-light.scss
│   │   │   ├── theme-solarized-dark.scss
│   │   │   └── theme-solarized-light.scss
│   │   ├── pages/
│   │   │   ├── page_bookmarks.scss
│   │   │   ├── page_filter_lists.scss
│   │   │   ├── page_modlog.scss
│   │   │   ├── page_profile.scss
│   │   │   ├── post_front.scss
│   │   │   └── post_single.scss
│   │   └── themes/
│   │       ├── _default.scss
│   │       ├── _kbin.scss
│   │       ├── _solarized.scss
│   │       └── _tokyo-night.scss
│   └── utils/
│       ├── debounce.js
│       ├── event-source.js
│       ├── http.js
│       ├── mbin.js
│       ├── popover.js
│       └── routing.js
├── bin/
│   ├── console
│   ├── phpunit
│   └── post-upgrade
├── ci/
│   ├── Dockerfile
│   ├── ignoredPaths.txt
│   └── skipOnExcluded.sh
├── compose.dev.yaml
├── compose.yaml
├── composer.json
├── config/
│   ├── bundles.php
│   ├── mbin_routes/
│   │   ├── activity_pub.yaml
│   │   ├── admin.yaml
│   │   ├── admin_api.yaml
│   │   ├── ajax.yaml
│   │   ├── api.yaml
│   │   ├── bookmark.yaml
│   │   ├── bookmark_api.yaml
│   │   ├── combined_api.yaml
│   │   ├── custom_style.yaml
│   │   ├── domain.yaml
│   │   ├── domain_api.yaml
│   │   ├── entry.yaml
│   │   ├── entry_api.yaml
│   │   ├── front.yaml
│   │   ├── instance_api.yaml
│   │   ├── landing.yaml
│   │   ├── magazine.yaml
│   │   ├── magazine_api.yaml
│   │   ├── magazine_mod_request_api.yaml
│   │   ├── magazine_panel.yaml
│   │   ├── message.yaml
│   │   ├── message_api.yaml
│   │   ├── moderation_api.yaml
│   │   ├── modlog.yaml
│   │   ├── notification_api.yaml
│   │   ├── notification_settings.yaml
│   │   ├── notification_settings_api.yaml
│   │   ├── page.yaml
│   │   ├── people.yaml
│   │   ├── post.yaml
│   │   ├── post_api.yaml
│   │   ├── search.yaml
│   │   ├── search_api.yaml
│   │   ├── security.yaml
│   │   ├── tag.yaml
│   │   ├── user.yaml
│   │   └── user_api.yaml
│   ├── mbin_serialization/
│   │   ├── badge.yaml
│   │   ├── domain.yaml
│   │   ├── entry.yaml
│   │   ├── entry_comment.yaml
│   │   ├── image.yaml
│   │   ├── magazine.yaml
│   │   ├── post.yaml
│   │   ├── post_comment.yaml
│   │   └── user.yaml
│   ├── packages/
│   │   ├── antispam.yaml
│   │   ├── babdev_pagerfanta.yaml
│   │   ├── cache.yaml
│   │   ├── commonmark.yaml
│   │   ├── dama_doctrine_test_bundle.yaml
│   │   ├── debug.yaml
│   │   ├── dev/
│   │   │   └── rate_limiter.yaml
│   │   ├── doctrine.yaml
│   │   ├── doctrine_migrations.yaml
│   │   ├── fos_js_routing.yaml
│   │   ├── framework.yaml
│   │   ├── knpu_oauth2_client.yaml
│   │   ├── league_oauth2_server.yaml
│   │   ├── liip_imagine.yaml
│   │   ├── lock.yaml
│   │   ├── mailer.yaml
│   │   ├── mercure.yaml
│   │   ├── messenger.yaml
│   │   ├── meteo_concept_h_captcha.yaml
│   │   ├── monolog.yaml
│   │   ├── nelmio_api_doc.yaml
│   │   ├── nelmio_cors.yaml
│   │   ├── nyholm_psr7.yaml
│   │   ├── oneup_flysystem.yaml
│   │   ├── prod/
│   │   │   └── routing.yaml
│   │   ├── rate_limiter.yaml
│   │   ├── reset_password.yaml
│   │   ├── routing.yaml
│   │   ├── rss_atom.yaml
│   │   ├── scheb_2fa.yaml
│   │   ├── security.yaml
│   │   ├── test/
│   │   │   ├── framework.yaml
│   │   │   ├── messenger.yaml
│   │   │   ├── rate_limiter.yaml
│   │   │   └── twig.yaml
│   │   ├── translation.yaml
│   │   ├── twig.yaml
│   │   ├── twig_component.yaml
│   │   ├── uid.yaml
│   │   ├── validator.yaml
│   │   ├── web_profiler.yaml
│   │   ├── webpack_encore.yaml
│   │   └── workflow.yaml
│   ├── preload.php
│   ├── routes/
│   │   ├── dev/
│   │   │   └── framework.yaml
│   │   ├── fos_js_routing.yaml
│   │   ├── framework.yaml
│   │   ├── league_oauth2_server.yaml
│   │   ├── liip_imagine.yaml
│   │   ├── nelmio_api_doc.yaml
│   │   ├── rss_atom.yaml
│   │   ├── scheb_2fa.yaml
│   │   ├── security.yaml
│   │   ├── ux_autocomplete.yaml
│   │   └── web_profiler.yaml
│   ├── routes.yaml
│   └── services.yaml
├── docker/
│   ├── Caddyfile
│   ├── Dockerfile
│   ├── conf.d/
│   │   ├── 10-app.ini
│   │   ├── 20-app.dev.ini
│   │   └── 20-app.prod.ini
│   ├── docker-entrypoint.sh
│   ├── setup.sh
│   ├── tests/
│   │   └── compose.yaml
│   └── valkey.conf
├── docs/
│   ├── 01-user/
│   │   ├── 01-user_guide.md
│   │   ├── 02-FAQ.md
│   │   └── README.md
│   ├── 02-admin/
│   │   ├── 01-installation/
│   │   │   ├── 01-bare_metal.md
│   │   │   ├── 02-docker.md
│   │   │   └── README.md
│   │   ├── 02-configuration/
│   │   │   ├── 01-mbin_config_files.md
│   │   │   ├── 02-nginx.md
│   │   │   ├── 03-lets_encrypt.md
│   │   │   ├── 04-postgresql.md
│   │   │   ├── 05-redis.md
│   │   │   └── README.md
│   │   ├── 03-optional-features/
│   │   │   ├── 01-mercure.md
│   │   │   ├── 02-sso.md
│   │   │   ├── 03-captcha.md
│   │   │   ├── 04-user_application.md
│   │   │   ├── 05-image_metadata_cleaning.md
│   │   │   ├── 06-s3_storage.md
│   │   │   ├── 07-anubis.md
│   │   │   ├── 08-monitoring.md
│   │   │   ├── 09-image-compression.md
│   │   │   └── README.md
│   │   ├── 04-running-mbin/
│   │   │   ├── 01-first_setup.md
│   │   │   ├── 02-backup.md
│   │   │   ├── 03-upgrades.md
│   │   │   ├── 04-messenger.md
│   │   │   ├── 05-cli.md
│   │   │   └── README.md
│   │   ├── 05-troubleshooting/
│   │   │   ├── 01-bare_metal.md
│   │   │   ├── 02-docker.md
│   │   │   └── README.md
│   │   ├── FAQ.md
│   │   └── README.md
│   ├── 03-contributing/
│   │   ├── 01-getting_started.md
│   │   ├── 02-linting.md
│   │   ├── 03-project-overview.md
│   │   ├── 04-about-federation.md
│   │   └── README.md
│   ├── 04-app_developers/
│   │   └── README.md
│   ├── 05-fediverse_developers/
│   │   └── README.md
│   ├── README.md
│   └── postman/
│       ├── kbin.postman_collection.json
│       └── kbin.postman_environment.json
├── eslint.config.mjs
├── migrations/
│   ├── .gitignore
│   ├── Version20210527210529.php
│   ├── Version20210830133327.php
│   ├── Version20211016124104.php
│   ├── Version20211107140830.php
│   ├── Version20211113102713.php
│   ├── Version20211117170048.php
│   ├── Version20211121182824.php
│   ├── Version20211205133802.php
│   ├── Version20211220092653.php
│   ├── Version20211231174542.php
│   ├── Version20220116141404.php
│   ├── Version20220123173726.php
│   ├── Version20220125212007.php
│   ├── Version20220131190012.php
│   ├── Version20220204202829.php
│   ├── Version20220206143129.php
│   ├── Version20220208192443.php
│   ├── Version20220216211707.php
│   ├── Version20220218220935.php
│   ├── Version20220306181222.php
│   ├── Version20220308201003.php
│   ├── Version20220320191810.php
│   ├── Version20220404185534.php
│   ├── Version20220407171552.php
│   ├── Version20220408100230.php
│   ├── Version20220411203149.php
│   ├── Version20220421082111.php
│   ├── Version20220621144628.php
│   ├── Version20220705184724.php
│   ├── Version20220716120139.php
│   ├── Version20220716142146.php
│   ├── Version20220717101149.php
│   ├── Version20220723095813.php
│   ├── Version20220723182602.php
│   ├── Version20220801085018.php
│   ├── Version20220808150935.php
│   ├── Version20220903070858.php
│   ├── Version20220911120737.php
│   ├── Version20220917102655.php
│   ├── Version20220918140533.php
│   ├── Version20220924182955.php
│   ├── Version20221015120344.php
│   ├── Version20221030095047.php
│   ├── Version20221108164813.php
│   ├── Version20221109161753.php
│   ├── Version20221116150037.php
│   ├── Version20221121125723.php
│   ├── Version20221124162526.php
│   ├── Version20221128212959.php
│   ├── Version20221202114605.php
│   ├── Version20221202134944.php
│   ├── Version20221202140020.php
│   ├── Version20221214153611.php
│   ├── Version20221222124812.php
│   ├── Version20221229160511.php
│   ├── Version20221229162448.php
│   ├── Version20230125123959.php
│   ├── Version20230306134010.php
│   ├── Version20230314134010.php
│   ├── Version20230323160934.php
│   ├── Version20230323170745.php
│   ├── Version20230325084833.php
│   ├── Version20230325101955.php
│   ├── Version20230404080956.php
│   ├── Version20230411133416.php
│   ├── Version20230411143354.php
│   ├── Version20230412211534.php
│   ├── Version20230425103236.php
│   ├── Version20230428130129.php
│   ├── Version20230429053840.php
│   ├── Version20230429143017.php
│   ├── Version20230504124307.php
│   ├── Version20230514143119.php
│   ├── Version20230521145244.php
│   ├── Version20230522135602.php
│   ├── Version20230525203803.php
│   ├── Version20230615085154.php
│   ├── Version20230615091124.php
│   ├── Version20230615203020.php
│   ├── Version20230701125418.php
│   ├── Version20230712132025.php
│   ├── Version20230715034515.php
│   ├── Version20230718160422.php
│   ├── Version20230719060447.php
│   ├── Version20230729063543.php
│   ├── Version20230812151754.php
│   ├── Version20230820234418.php
│   ├── Version20230902082312.php
│   ├── Version20230906095436.php
│   ├── Version20231019023030.php
│   ├── Version20231019190634.php
│   ├── Version20231103004800.php
│   ├── Version20231103070928.php
│   ├── Version20231107204142.php
│   ├── Version20231108084451.php
│   ├── Version20231112133420.php
│   ├── Version20231113165549.php
│   ├── Version20231119012320.php
│   ├── Version20231120164429.php
│   ├── Version20231121010453.php
│   ├── Version20231130203400.php
│   ├── Version20240113214751.php
│   ├── Version20240216110804.php
│   ├── Version20240217103834.php
│   ├── Version20240217141231.php
│   ├── Version20240313222328.php
│   ├── Version20240315124130.php
│   ├── Version20240317163312.php
│   ├── Version20240330101300.php
│   ├── Version20240402190028.php
│   ├── Version20240405131611.php
│   ├── Version20240405134821.php
│   ├── Version20240409072525.php
│   ├── Version20240412010024.php
│   ├── Version20240503224350.php
│   ├── Version20240515122858.php
│   ├── Version20240528172429.php
│   ├── Version20240529115400.php
│   ├── Version20240603190838.php
│   ├── Version20240603230734.php
│   ├── Version20240612234046.php
│   ├── Version20240614120443.php
│   ├── Version20240615225744.php
│   ├── Version20240625162714.php
│   ├── Version20240628142700.php
│   ├── Version20240628145441.php
│   ├── Version20240701113000.php
│   ├── Version20240706005744.php
│   ├── Version20240715181419.php
│   ├── Version20240718232800.php
│   ├── Version20240729174207.php
│   ├── Version20240815162107.php
│   ├── Version20240820201944.php
│   ├── Version20240831151328.php
│   ├── Version20240923164233.php
│   ├── Version20241104162329.php
│   ├── Version20241124155724.php
│   ├── Version20241125210454.php
│   ├── Version20250128125727.php
│   ├── Version20250203232039.php
│   ├── Version20250204152300.php
│   ├── Version20250706115844.php
│   ├── Version20250723183702.php
│   ├── Version20250802102904.php
│   ├── Version20250812194529.php
│   ├── Version20250813132233.php
│   ├── Version20250907112001.php
│   ├── Version20250924105525.php
│   ├── Version20251022104152.php
│   ├── Version20251022115254.php
│   ├── Version20251031174052.php
│   ├── Version20251118112235.php
│   ├── Version20251129140919.php
│   ├── Version20251206145724.php
│   ├── Version20251214111055.php
│   ├── Version20260113103210.php
│   ├── Version20260113151625.php
│   ├── Version20260118131639.php
│   ├── Version20260118142727.php
│   ├── Version20260120175744.php
│   ├── Version20260127111110.php
│   ├── Version20260201131000.php
│   ├── Version20260224224633.php
│   ├── Version20260303103217.php
│   ├── Version20260303142852.php
│   ├── Version20260315190023.php
│   └── Version20260330132857.php
├── package.json
├── phpstan.dist.neon
├── phpunit.xml.dist
├── public/
│   ├── assets/
│   │   └── icons/
│   │       └── mbin-shortcut-base-file.psd
│   ├── index.php
│   ├── js/
│   │   └── fos_js_routes.json
│   ├── manifest.json
│   ├── robots.txt
│   └── sw.js
├── src/
│   ├── ActivityPub/
│   │   ├── ActorHandle.php
│   │   ├── JsonRd.php
│   │   └── JsonRdLink.php
│   ├── ArgumentValueResolver/
│   │   ├── FavouriteResolver.php
│   │   ├── MagazineResolver.php
│   │   ├── ReportResolver.php
│   │   ├── UserResolver.php
│   │   └── VotableResolver.php
│   ├── Command/
│   │   ├── ActorUpdateCommand.php
│   │   ├── AdminCommand.php
│   │   ├── ApImportObject.php
│   │   ├── AwesomeBot/
│   │   │   ├── AwesomeBotEntries.php
│   │   │   ├── AwesomeBotFixtures.php
│   │   │   └── AwesomeBotMagazine.php
│   │   ├── CheckDuplicatesUsersMagazines.php
│   │   ├── DeleteMonitoringDataCommand.php
│   │   ├── DeleteOrphanedImagesCommand.php
│   │   ├── DeleteUserCommand.php
│   │   ├── DocumentationGenerateFederationCommand.php
│   │   ├── ImageCacheCommand.php
│   │   ├── MagazineCreateCommand.php
│   │   ├── MagazineUnsubCommand.php
│   │   ├── ModeratorCommand.php
│   │   ├── MoveEntriesByTagCommand.php
│   │   ├── MovePostsByTagCommand.php
│   │   ├── PostMagazinesUpdateCommand.php
│   │   ├── RefreshImageMetaDataCommand.php
│   │   ├── RemoveAccountsMarkedForDeletion.php
│   │   ├── RemoveDMAndBanCommand.php
│   │   ├── RemoveDeadMessagesCommand.php
│   │   ├── RemoveDuplicatesCommand.php
│   │   ├── RemoveFailedMessagesCommand.php
│   │   ├── RemoveOldImagesCommand.php
│   │   ├── RemoveRemoteMediaCommand.php
│   │   ├── SubMagazineCommand.php
│   │   ├── Update/
│   │   │   ├── ApKeysUpdateCommand.php
│   │   │   ├── Async/
│   │   │   │   ├── ImageBlurhashHandler.php
│   │   │   │   ├── ImageBlurhashMessage.php
│   │   │   │   ├── NoteVisibilityHandler.php
│   │   │   │   └── NoteVisibilityMessage.php
│   │   │   ├── ImageBlurhashUpdateCommand.php
│   │   │   ├── LocalMagazineApProfile.php
│   │   │   ├── NoteVisibilityUpdateCommand.php
│   │   │   ├── PostCommentRootUpdateCommand.php
│   │   │   ├── PushKeysUpdateCommand.php
│   │   │   ├── RemoveMagazineNameFromTagsCommand.php
│   │   │   ├── RemoveRemoteEntriesFromLocalDomainCommand.php
│   │   │   ├── SlugUpdateCommand.php
│   │   │   ├── TagsUpdateCommand.php
│   │   │   └── UserLastActiveUpdateCommand.php
│   │   ├── UserCommand.php
│   │   ├── UserPasswordCommand.php
│   │   ├── UserRotatePrivateKeys.php
│   │   ├── UserUnsubCommand.php
│   │   └── VerifyCommand.php
│   ├── Controller/
│   │   ├── .gitignore
│   │   ├── AboutController.php
│   │   ├── AbstractController.php
│   │   ├── ActivityPub/
│   │   │   ├── ContextsController.php
│   │   │   ├── EntryCommentController.php
│   │   │   ├── EntryController.php
│   │   │   ├── HostMetaController.php
│   │   │   ├── InstanceController.php
│   │   │   ├── InstanceOutboxController.php
│   │   │   ├── Magazine/
│   │   │   │   ├── MagazineController.php
│   │   │   │   ├── MagazineFollowersController.php
│   │   │   │   ├── MagazineInboxController.php
│   │   │   │   ├── MagazineModeratorsController.php
│   │   │   │   ├── MagazineOutboxController.php
│   │   │   │   └── MagazinePinnedController.php
│   │   │   ├── MessageController.php
│   │   │   ├── NodeInfoController.php
│   │   │   ├── ObjectController.php
│   │   │   ├── PostCommentController.php
│   │   │   ├── PostController.php
│   │   │   ├── ReportController.php
│   │   │   ├── SharedInboxController.php
│   │   │   ├── User/
│   │   │   │   ├── UserController.php
│   │   │   │   ├── UserFollowersController.php
│   │   │   │   ├── UserInboxController.php
│   │   │   │   └── UserOutboxController.php
│   │   │   └── WebFingerController.php
│   │   ├── Admin/
│   │   │   ├── AdminClearCacheController.php
│   │   │   ├── AdminDashboardController.php
│   │   │   ├── AdminDeletionController.php
│   │   │   ├── AdminFederationController.php
│   │   │   ├── AdminMagazineOwnershipRequestController.php
│   │   │   ├── AdminModeratorController.php
│   │   │   ├── AdminMonitoringController.php
│   │   │   ├── AdminPagesController.php
│   │   │   ├── AdminReportController.php
│   │   │   ├── AdminSettingsController.php
│   │   │   ├── AdminSignupRequestsController.php
│   │   │   └── AdminUsersController.php
│   │   ├── AgentController.php
│   │   ├── AjaxController.php
│   │   ├── Api/
│   │   │   ├── BaseApi.php
│   │   │   ├── Bookmark/
│   │   │   │   ├── BookmarkApiController.php
│   │   │   │   └── BookmarkListApiController.php
│   │   │   ├── Combined/
│   │   │   │   └── CombinedRetrieveApi.php
│   │   │   ├── Domain/
│   │   │   │   ├── DomainBaseApi.php
│   │   │   │   ├── DomainBlockApi.php
│   │   │   │   ├── DomainRetrieveApi.php
│   │   │   │   └── DomainSubscribeApi.php
│   │   │   ├── Entry/
│   │   │   │   ├── Admin/
│   │   │   │   │   ├── EntriesChangeMagazineApi.php
│   │   │   │   │   └── EntriesPurgeApi.php
│   │   │   │   ├── Comments/
│   │   │   │   │   ├── Admin/
│   │   │   │   │   │   └── EntryCommentsPurgeApi.php
│   │   │   │   │   ├── DomainEntryCommentsRetrieveApi.php
│   │   │   │   │   ├── EntryCommentsActivityApi.php
│   │   │   │   │   ├── EntryCommentsCreateApi.php
│   │   │   │   │   ├── EntryCommentsDeleteApi.php
│   │   │   │   │   ├── EntryCommentsFavouriteApi.php
│   │   │   │   │   ├── EntryCommentsReportApi.php
│   │   │   │   │   ├── EntryCommentsRetrieveApi.php
│   │   │   │   │   ├── EntryCommentsUpdateApi.php
│   │   │   │   │   ├── EntryCommentsVoteApi.php
│   │   │   │   │   ├── Moderate/
│   │   │   │   │   │   ├── EntryCommentsSetAdultApi.php
│   │   │   │   │   │   ├── EntryCommentsSetLanguageApi.php
│   │   │   │   │   │   └── EntryCommentsTrashApi.php
│   │   │   │   │   └── UserEntryCommentsRetrieveApi.php
│   │   │   │   ├── DomainEntriesRetrieveApi.php
│   │   │   │   ├── EntriesActivityApi.php
│   │   │   │   ├── EntriesBaseApi.php
│   │   │   │   ├── EntriesDeleteApi.php
│   │   │   │   ├── EntriesFavouriteApi.php
│   │   │   │   ├── EntriesReportApi.php
│   │   │   │   ├── EntriesRetrieveApi.php
│   │   │   │   ├── EntriesUpdateApi.php
│   │   │   │   ├── EntriesVoteApi.php
│   │   │   │   ├── MagazineEntriesRetrieveApi.php
│   │   │   │   ├── MagazineEntryCreateApi.php
│   │   │   │   ├── Moderate/
│   │   │   │   │   ├── EntriesLockApi.php
│   │   │   │   │   ├── EntriesPinApi.php
│   │   │   │   │   ├── EntriesSetAdultApi.php
│   │   │   │   │   ├── EntriesSetLanguageApi.php
│   │   │   │   │   └── EntriesTrashApi.php
│   │   │   │   └── UserEntriesRetrieveApi.php
│   │   │   ├── EntryComments.php
│   │   │   ├── Instance/
│   │   │   │   ├── Admin/
│   │   │   │   │   ├── InstanceRetrieveSettingsApi.php
│   │   │   │   │   ├── InstanceUpdateFederationApi.php
│   │   │   │   │   ├── InstanceUpdatePagesApi.php
│   │   │   │   │   └── InstanceUpdateSettingsApi.php
│   │   │   │   ├── InstanceBaseApi.php
│   │   │   │   ├── InstanceDetailsApi.php
│   │   │   │   ├── InstanceModLogApi.php
│   │   │   │   ├── InstanceRetrieveFederationApi.php
│   │   │   │   ├── InstanceRetrieveInfoApi.php
│   │   │   │   └── InstanceRetrieveStatsApi.php
│   │   │   ├── Magazine/
│   │   │   │   ├── Admin/
│   │   │   │   │   ├── MagazineAddBadgesApi.php
│   │   │   │   │   ├── MagazineAddModeratorsApi.php
│   │   │   │   │   ├── MagazineAddTagsApi.php
│   │   │   │   │   ├── MagazineCreateApi.php
│   │   │   │   │   ├── MagazineDeleteApi.php
│   │   │   │   │   ├── MagazineDeleteBannerApi.php
│   │   │   │   │   ├── MagazineDeleteIconApi.php
│   │   │   │   │   ├── MagazinePurgeApi.php
│   │   │   │   │   ├── MagazineRemoveBadgesApi.php
│   │   │   │   │   ├── MagazineRemoveModeratorsApi.php
│   │   │   │   │   ├── MagazineRemoveTagsApi.php
│   │   │   │   │   ├── MagazineRetrieveStatsApi.php
│   │   │   │   │   ├── MagazineUpdateApi.php
│   │   │   │   │   └── MagazineUpdateThemeApi.php
│   │   │   │   ├── MagazineBaseApi.php
│   │   │   │   ├── MagazineBlockApi.php
│   │   │   │   ├── MagazineModLogApi.php
│   │   │   │   ├── MagazineRetrieveApi.php
│   │   │   │   ├── MagazineRetrieveThemeApi.php
│   │   │   │   ├── MagazineSubscribeApi.php
│   │   │   │   └── Moderate/
│   │   │   │       ├── MagazineBansRetrieveApi.php
│   │   │   │       ├── MagazineModOwnerRequestApi.php
│   │   │   │       ├── MagazineReportsAcceptApi.php
│   │   │   │       ├── MagazineReportsRejectApi.php
│   │   │   │       ├── MagazineReportsRetrieveApi.php
│   │   │   │       ├── MagazineTrashedRetrieveApi.php
│   │   │   │       └── MagazineUserBanApi.php
│   │   │   ├── MagazineBadges.php
│   │   │   ├── Message/
│   │   │   │   ├── MessageBaseApi.php
│   │   │   │   ├── MessageReadApi.php
│   │   │   │   ├── MessageRetrieveApi.php
│   │   │   │   ├── MessageThreadCreateApi.php
│   │   │   │   └── MessageThreadReplyApi.php
│   │   │   ├── Notification/
│   │   │   │   ├── NotificationBaseApi.php
│   │   │   │   ├── NotificationPurgeApi.php
│   │   │   │   ├── NotificationPushApi.php
│   │   │   │   ├── NotificationReadApi.php
│   │   │   │   ├── NotificationRetrieveApi.php
│   │   │   │   └── NotificationSettingApi.php
│   │   │   ├── OAuth2/
│   │   │   │   ├── Admin/
│   │   │   │   │   ├── RetrieveClientApi.php
│   │   │   │   │   └── RetrieveClientStatsApi.php
│   │   │   │   ├── CreateClientApi.php
│   │   │   │   ├── DeleteClientApi.php
│   │   │   │   └── RevokeTokenApi.php
│   │   │   ├── Post/
│   │   │   │   ├── Admin/
│   │   │   │   │   └── PostsPurgeApi.php
│   │   │   │   ├── Comments/
│   │   │   │   │   ├── Admin/
│   │   │   │   │   │   └── PostCommentsPurgeApi.php
│   │   │   │   │   ├── Moderate/
│   │   │   │   │   │   ├── PostCommentsSetAdultApi.php
│   │   │   │   │   │   ├── PostCommentsSetLanguageApi.php
│   │   │   │   │   │   └── PostCommentsTrashApi.php
│   │   │   │   │   ├── PostCommentsActivityApi.php
│   │   │   │   │   ├── PostCommentsCreateApi.php
│   │   │   │   │   ├── PostCommentsDeleteApi.php
│   │   │   │   │   ├── PostCommentsFavouriteApi.php
│   │   │   │   │   ├── PostCommentsReportApi.php
│   │   │   │   │   ├── PostCommentsRetrieveApi.php
│   │   │   │   │   ├── PostCommentsUpdateApi.php
│   │   │   │   │   ├── PostCommentsVoteApi.php
│   │   │   │   │   └── UserPostCommentsRetrieveApi.php
│   │   │   │   ├── Moderate/
│   │   │   │   │   ├── PostsLockApi.php
│   │   │   │   │   ├── PostsPinApi.php
│   │   │   │   │   ├── PostsSetAdultApi.php
│   │   │   │   │   ├── PostsSetLanguageApi.php
│   │   │   │   │   └── PostsTrashApi.php
│   │   │   │   ├── PostsActivityApi.php
│   │   │   │   ├── PostsBaseApi.php
│   │   │   │   ├── PostsCreateApi.php
│   │   │   │   ├── PostsDeleteApi.php
│   │   │   │   ├── PostsFavouriteApi.php
│   │   │   │   ├── PostsReportApi.php
│   │   │   │   ├── PostsRetrieveApi.php
│   │   │   │   ├── PostsUpdateApi.php
│   │   │   │   ├── PostsVoteApi.php
│   │   │   │   └── UserPostsRetrieveApi.php
│   │   │   ├── PostComments.php
│   │   │   ├── RandomMagazine.php
│   │   │   ├── Search/
│   │   │   │   └── SearchRetrieveApi.php
│   │   │   └── User/
│   │   │       ├── Admin/
│   │   │       │   ├── UserApplicationApi.php
│   │   │       │   ├── UserBanApi.php
│   │   │       │   ├── UserDeleteApi.php
│   │   │       │   ├── UserPurgeApi.php
│   │   │       │   ├── UserRetrieveBannedApi.php
│   │   │       │   └── UserVerifyApi.php
│   │   │       ├── UserBaseApi.php
│   │   │       ├── UserBlockApi.php
│   │   │       ├── UserContentApi.php
│   │   │       ├── UserDeleteImagesApi.php
│   │   │       ├── UserFilterListApi.php
│   │   │       ├── UserFollowApi.php
│   │   │       ├── UserModeratesApi.php
│   │   │       ├── UserRetrieveApi.php
│   │   │       ├── UserRetrieveOAuthConsentsApi.php
│   │   │       ├── UserUpdateApi.php
│   │   │       ├── UserUpdateImagesApi.php
│   │   │       └── UserUpdateOAuthConsentsApi.php
│   │   ├── BookmarkController.php
│   │   ├── BookmarkListController.php
│   │   ├── BoostController.php
│   │   ├── ContactController.php
│   │   ├── CrosspostController.php
│   │   ├── CustomStyleController.php
│   │   ├── Domain/
│   │   │   ├── DomainBlockController.php
│   │   │   ├── DomainCommentFrontController.php
│   │   │   ├── DomainFrontController.php
│   │   │   └── DomainSubController.php
│   │   ├── Entry/
│   │   │   ├── Comment/
│   │   │   │   ├── EntryCommentChangeAdultController.php
│   │   │   │   ├── EntryCommentChangeLangController.php
│   │   │   │   ├── EntryCommentCreateController.php
│   │   │   │   ├── EntryCommentDeleteController.php
│   │   │   │   ├── EntryCommentDeleteImageController.php
│   │   │   │   ├── EntryCommentEditController.php
│   │   │   │   ├── EntryCommentFavouriteController.php
│   │   │   │   ├── EntryCommentFrontController.php
│   │   │   │   ├── EntryCommentModerateController.php
│   │   │   │   ├── EntryCommentResponseTrait.php
│   │   │   │   ├── EntryCommentViewController.php
│   │   │   │   └── EntryCommentVotersController.php
│   │   │   ├── EntryChangeAdultController.php
│   │   │   ├── EntryChangeLangController.php
│   │   │   ├── EntryChangeMagazineController.php
│   │   │   ├── EntryCreateController.php
│   │   │   ├── EntryDeleteController.php
│   │   │   ├── EntryDeleteImageController.php
│   │   │   ├── EntryEditController.php
│   │   │   ├── EntryFavouriteController.php
│   │   │   ├── EntryFrontController.php
│   │   │   ├── EntryLockController.php
│   │   │   ├── EntryModerateController.php
│   │   │   ├── EntryPinController.php
│   │   │   ├── EntrySingleController.php
│   │   │   ├── EntryTemplateTrait.php
│   │   │   └── EntryVotersController.php
│   │   ├── FaqController.php
│   │   ├── FavouriteController.php
│   │   ├── FederationController.php
│   │   ├── Magazine/
│   │   │   ├── MagazineAbandonedController.php
│   │   │   ├── MagazineBlockController.php
│   │   │   ├── MagazineCreateController.php
│   │   │   ├── MagazineDeleteController.php
│   │   │   ├── MagazineListController.php
│   │   │   ├── MagazineModController.php
│   │   │   ├── MagazineModeratorRequestController.php
│   │   │   ├── MagazineOwnershipRequestController.php
│   │   │   ├── MagazinePeopleFrontController.php
│   │   │   ├── MagazineRemoveSubscriptionsController.php
│   │   │   ├── MagazineSubController.php
│   │   │   └── Panel/
│   │   │       ├── MagazineBadgeController.php
│   │   │       ├── MagazineBanController.php
│   │   │       ├── MagazineEditController.php
│   │   │       ├── MagazineModeratorController.php
│   │   │       ├── MagazineModeratorRequestsController.php
│   │   │       ├── MagazineReportController.php
│   │   │       ├── MagazineStatsController.php
│   │   │       ├── MagazineTagController.php
│   │   │       ├── MagazineThemeController.php
│   │   │       └── MagazineTrashController.php
│   │   ├── Message/
│   │   │   ├── MessageCreateThreadController.php
│   │   │   ├── MessageThreadController.php
│   │   │   └── MessageThreadListController.php
│   │   ├── ModlogController.php
│   │   ├── NotificationSettingsController.php
│   │   ├── People/
│   │   │   └── PeopleFrontController.php
│   │   ├── Post/
│   │   │   ├── Comment/
│   │   │   │   ├── PostCommentChangeAdultController.php
│   │   │   │   ├── PostCommentChangeLangController.php
│   │   │   │   ├── PostCommentCreateController.php
│   │   │   │   ├── PostCommentDeleteController.php
│   │   │   │   ├── PostCommentDeleteImageController.php
│   │   │   │   ├── PostCommentEditController.php
│   │   │   │   ├── PostCommentFavouriteController.php
│   │   │   │   ├── PostCommentModerateController.php
│   │   │   │   ├── PostCommentResponseTrait.php
│   │   │   │   └── PostCommentVotersController.php
│   │   │   ├── PostChangeAdultController.php
│   │   │   ├── PostChangeLangController.php
│   │   │   ├── PostChangeMagazineController.php
│   │   │   ├── PostCreateController.php
│   │   │   ├── PostDeleteController.php
│   │   │   ├── PostDeleteImageController.php
│   │   │   ├── PostEditController.php
│   │   │   ├── PostFavouriteController.php
│   │   │   ├── PostLockController.php
│   │   │   ├── PostModerateController.php
│   │   │   ├── PostPinController.php
│   │   │   ├── PostSingleController.php
│   │   │   └── PostVotersController.php
│   │   ├── PrivacyPolicyController.php
│   │   ├── ReportController.php
│   │   ├── SearchController.php
│   │   ├── Security/
│   │   │   ├── AuthentikController.php
│   │   │   ├── AzureController.php
│   │   │   ├── DiscordController.php
│   │   │   ├── FacebookController.php
│   │   │   ├── GithubController.php
│   │   │   ├── GoogleController.php
│   │   │   ├── KeycloakController.php
│   │   │   ├── LoginController.php
│   │   │   ├── LogoutController.php
│   │   │   ├── PrivacyPortalController.php
│   │   │   ├── RegisterController.php
│   │   │   ├── ResendActivationEmailController.php
│   │   │   ├── ResetPasswordController.php
│   │   │   ├── SimpleLoginController.php
│   │   │   ├── VerifyEmailController.php
│   │   │   └── ZitadelController.php
│   │   ├── StatsController.php
│   │   ├── Tag/
│   │   │   ├── TagBanController.php
│   │   │   ├── TagCommentFrontController.php
│   │   │   ├── TagEntryFrontController.php
│   │   │   ├── TagOverviewController.php
│   │   │   ├── TagPeopleFrontController.php
│   │   │   └── TagPostFrontController.php
│   │   ├── TermsController.php
│   │   ├── Traits/
│   │   │   └── PrivateContentTrait.php
│   │   ├── User/
│   │   │   ├── AccountDeletionController.php
│   │   │   ├── FilterListsController.php
│   │   │   ├── Profile/
│   │   │   │   ├── User2FAController.php
│   │   │   │   ├── UserBlockController.php
│   │   │   │   ├── UserEditController.php
│   │   │   │   ├── UserNotificationController.php
│   │   │   │   ├── UserReportsController.php
│   │   │   │   ├── UserReportsModController.php
│   │   │   │   ├── UserSettingController.php
│   │   │   │   ├── UserStatsController.php
│   │   │   │   ├── UserSubController.php
│   │   │   │   └── UserVerifyController.php
│   │   │   ├── ThemeSettingsController.php
│   │   │   ├── UserAvatarDeleteController.php
│   │   │   ├── UserBanController.php
│   │   │   ├── UserBlockController.php
│   │   │   ├── UserCoverDeleteController.php
│   │   │   ├── UserDeleteController.php
│   │   │   ├── UserFollowController.php
│   │   │   ├── UserFrontController.php
│   │   │   ├── UserNoteController.php
│   │   │   ├── UserRemoveFollowing.php
│   │   │   ├── UserReputationController.php
│   │   │   ├── UserSuspendController.php
│   │   │   └── UserThemeController.php
│   │   └── VoteController.php
│   ├── DTO/
│   │   ├── ActivitiesResponseDto.php
│   │   ├── ActivityPub/
│   │   │   ├── ImageDto.php
│   │   │   └── VideoDto.php
│   │   ├── BadgeDto.php
│   │   ├── BadgeResponseDto.php
│   │   ├── BookmarkListDto.php
│   │   ├── BookmarksDto.php
│   │   ├── ClientAccessStatsResponseDto.php
│   │   ├── ClientConsentsRequestDto.php
│   │   ├── ClientConsentsResponseDto.php
│   │   ├── ClientResponseDto.php
│   │   ├── ConfirmDefederationDto.php
│   │   ├── ContactDto.php
│   │   ├── ContentRequestDto.php
│   │   ├── ContentResponseDto.php
│   │   ├── ContentStatsResponseDto.php
│   │   ├── Contracts/
│   │   │   ├── UserDtoInterface.php
│   │   │   └── VisibilityAwareDtoTrait.php
│   │   ├── DomainDto.php
│   │   ├── EntryCommentDto.php
│   │   ├── EntryCommentRequestDto.php
│   │   ├── EntryCommentResponseDto.php
│   │   ├── EntryDto.php
│   │   ├── EntryRequestDto.php
│   │   ├── EntryResponseDto.php
│   │   ├── ExtendedContentResponseDto.php
│   │   ├── FederationSettingsDto.php
│   │   ├── GroupedMonitoringQueryDto.php
│   │   ├── ImageDto.php
│   │   ├── ImageUploadDto.php
│   │   ├── InstanceDto.php
│   │   ├── InstancesDto.php
│   │   ├── InstancesDtoV2.php
│   │   ├── MagazineBanDto.php
│   │   ├── MagazineBanResponseDto.php
│   │   ├── MagazineDto.php
│   │   ├── MagazineLogResponseDto.php
│   │   ├── MagazineRequestDto.php
│   │   ├── MagazineResponseDto.php
│   │   ├── MagazineSmallResponseDto.php
│   │   ├── MagazineThemeDto.php
│   │   ├── MagazineThemeRequestDto.php
│   │   ├── MagazineThemeResponseDto.php
│   │   ├── MagazineUpdateRequestDto.php
│   │   ├── MessageDto.php
│   │   ├── MessageResponseDto.php
│   │   ├── MessageThreadResponseDto.php
│   │   ├── ModeratorDto.php
│   │   ├── ModeratorResponseDto.php
│   │   ├── ModlogFilterDto.php
│   │   ├── MonitoringExecutionContextFilterDto.php
│   │   ├── NotificationPushSubscriptionRequestDto.php
│   │   ├── OAuth2ClientDto.php
│   │   ├── PageDto.php
│   │   ├── PostCommentDto.php
│   │   ├── PostCommentRequestDto.php
│   │   ├── PostCommentResponseDto.php
│   │   ├── PostDto.php
│   │   ├── PostRequestDto.php
│   │   ├── PostResponseDto.php
│   │   ├── RemoteInstanceDto.php
│   │   ├── ReportDto.php
│   │   ├── ReportRequestDto.php
│   │   ├── ReportResponseDto.php
│   │   ├── SearchDto.php
│   │   ├── SearchResponseDto.php
│   │   ├── SettingsDto.php
│   │   ├── SiteResponseDto.php
│   │   ├── Temp2FADto.php
│   │   ├── ToggleCreatedDto.php
│   │   ├── UserBanResponseDto.php
│   │   ├── UserDto.php
│   │   ├── UserFilterListDto.php
│   │   ├── UserFilterListResponseDto.php
│   │   ├── UserFilterWordDto.php
│   │   ├── UserNoteDto.php
│   │   ├── UserProfileRequestDto.php
│   │   ├── UserResponseDto.php
│   │   ├── UserSettingsDto.php
│   │   ├── UserSignupResponseDto.php
│   │   ├── UserSmallResponseDto.php
│   │   └── VoteStatsResponseDto.php
│   ├── DataFixtures/
│   │   ├── BaseFixture.php
│   │   ├── EntryCommentFixtures.php
│   │   ├── EntryFixtures.php
│   │   ├── MagazineFixtures.php
│   │   ├── PostCommentFixtures.php
│   │   ├── PostFixtures.php
│   │   ├── ReportFixtures.php
│   │   ├── SubFixtures.php
│   │   ├── UserFixtures.php
│   │   └── VoteFixtures.php
│   ├── DoctrineExtensions/
│   │   └── DBAL/
│   │       └── Types/
│   │           ├── Citext.php
│   │           ├── EnumApplicationStatus.php
│   │           ├── EnumDirectMessageSettings.php
│   │           ├── EnumFrontContentOptions.php
│   │           ├── EnumNotificationStatus.php
│   │           ├── EnumSortOptions.php
│   │           └── EnumType.php
│   ├── Document/
│   │   └── .gitignore
│   ├── Entity/
│   │   ├── .gitignore
│   │   ├── Activity.php
│   │   ├── ApActivity.php
│   │   ├── Badge.php
│   │   ├── Bookmark.php
│   │   ├── BookmarkList.php
│   │   ├── Client.php
│   │   ├── Contracts/
│   │   │   ├── ActivityPubActivityInterface.php
│   │   │   ├── ActivityPubActorInterface.php
│   │   │   ├── ApiResourceInterface.php
│   │   │   ├── CommentInterface.php
│   │   │   ├── ContentInterface.php
│   │   │   ├── ContentVisibilityInterface.php
│   │   │   ├── DomainInterface.php
│   │   │   ├── FavouriteInterface.php
│   │   │   ├── NotificationInterface.php
│   │   │   ├── RankingInterface.php
│   │   │   ├── ReportInterface.php
│   │   │   ├── VisibilityInterface.php
│   │   │   ├── VotableInterface.php
│   │   │   └── VoteInterface.php
│   │   ├── Domain.php
│   │   ├── DomainBlock.php
│   │   ├── DomainSubscription.php
│   │   ├── Embed.php
│   │   ├── Entry.php
│   │   ├── EntryBadge.php
│   │   ├── EntryComment.php
│   │   ├── EntryCommentCreatedNotification.php
│   │   ├── EntryCommentDeletedNotification.php
│   │   ├── EntryCommentEditedNotification.php
│   │   ├── EntryCommentFavourite.php
│   │   ├── EntryCommentMentionedNotification.php
│   │   ├── EntryCommentReplyNotification.php
│   │   ├── EntryCommentReport.php
│   │   ├── EntryCommentVote.php
│   │   ├── EntryCreatedNotification.php
│   │   ├── EntryDeletedNotification.php
│   │   ├── EntryEditedNotification.php
│   │   ├── EntryFavourite.php
│   │   ├── EntryMentionedNotification.php
│   │   ├── EntryReport.php
│   │   ├── EntryVote.php
│   │   ├── Favourite.php
│   │   ├── Hashtag.php
│   │   ├── HashtagLink.php
│   │   ├── Image.php
│   │   ├── Instance.php
│   │   ├── Magazine.php
│   │   ├── MagazineBan.php
│   │   ├── MagazineBanNotification.php
│   │   ├── MagazineBlock.php
│   │   ├── MagazineLog.php
│   │   ├── MagazineLogBan.php
│   │   ├── MagazineLogEntryCommentDeleted.php
│   │   ├── MagazineLogEntryCommentRestored.php
│   │   ├── MagazineLogEntryDeleted.php
│   │   ├── MagazineLogEntryLocked.php
│   │   ├── MagazineLogEntryPinned.php
│   │   ├── MagazineLogEntryRestored.php
│   │   ├── MagazineLogEntryUnlocked.php
│   │   ├── MagazineLogEntryUnpinned.php
│   │   ├── MagazineLogModeratorAdd.php
│   │   ├── MagazineLogModeratorRemove.php
│   │   ├── MagazineLogPostCommentDeleted.php
│   │   ├── MagazineLogPostCommentRestored.php
│   │   ├── MagazineLogPostDeleted.php
│   │   ├── MagazineLogPostLocked.php
│   │   ├── MagazineLogPostRestored.php
│   │   ├── MagazineLogPostUnlocked.php
│   │   ├── MagazineOwnershipRequest.php
│   │   ├── MagazineSubscription.php
│   │   ├── MagazineSubscriptionRequest.php
│   │   ├── MagazineUnBanNotification.php
│   │   ├── Message.php
│   │   ├── MessageNotification.php
│   │   ├── MessageThread.php
│   │   ├── Moderator.php
│   │   ├── ModeratorRequest.php
│   │   ├── MonitoringCurlRequest.php
│   │   ├── MonitoringExecutionContext.php
│   │   ├── MonitoringQuery.php
│   │   ├── MonitoringQueryString.php
│   │   ├── MonitoringTwigRender.php
│   │   ├── NewSignupNotification.php
│   │   ├── Notification.php
│   │   ├── NotificationSettings.php
│   │   ├── OAuth2ClientAccess.php
│   │   ├── OAuth2UserConsent.php
│   │   ├── Post.php
│   │   ├── PostComment.php
│   │   ├── PostCommentCreatedNotification.php
│   │   ├── PostCommentDeletedNotification.php
│   │   ├── PostCommentEditedNotification.php
│   │   ├── PostCommentFavourite.php
│   │   ├── PostCommentMentionedNotification.php
│   │   ├── PostCommentReplyNotification.php
│   │   ├── PostCommentReport.php
│   │   ├── PostCommentVote.php
│   │   ├── PostCreatedNotification.php
│   │   ├── PostDeletedNotification.php
│   │   ├── PostEditedNotification.php
│   │   ├── PostFavourite.php
│   │   ├── PostMentionedNotification.php
│   │   ├── PostReport.php
│   │   ├── PostVote.php
│   │   ├── Report.php
│   │   ├── ReportApprovedNotification.php
│   │   ├── ReportCreatedNotification.php
│   │   ├── ReportRejectedNotification.php
│   │   ├── ResetPasswordRequest.php
│   │   ├── Settings.php
│   │   ├── Site.php
│   │   ├── Traits/
│   │   │   ├── ActivityPubActivityTrait.php
│   │   │   ├── ActivityPubActorTrait.php
│   │   │   ├── ConsideredAtTrait.php
│   │   │   ├── CreatedAtTrait.php
│   │   │   ├── EditedAtTrait.php
│   │   │   ├── MonitoringPerformanceTrait.php
│   │   │   ├── RankingTrait.php
│   │   │   ├── UpdatedAtTrait.php
│   │   │   ├── VisibilityTrait.php
│   │   │   └── VotableTrait.php
│   │   ├── User.php
│   │   ├── UserBlock.php
│   │   ├── UserFilterList.php
│   │   ├── UserFollow.php
│   │   ├── UserFollowRequest.php
│   │   ├── UserNote.php
│   │   ├── UserPushSubscription.php
│   │   └── Vote.php
│   ├── Enums/
│   │   ├── EApplicationStatus.php
│   │   ├── EDirectMessageSettings.php
│   │   ├── EFrontContentOptions.php
│   │   ├── ENotificationStatus.php
│   │   ├── EPushNotificationType.php
│   │   └── ESortOptions.php
│   ├── Event/
│   │   ├── ActivityPub/
│   │   │   ├── CurlRequestBeginningEvent.php
│   │   │   ├── CurlRequestFinishedEvent.php
│   │   │   └── WebfingerResponseEvent.php
│   │   ├── DomainBlockedEvent.php
│   │   ├── DomainSubscribedEvent.php
│   │   ├── Entry/
│   │   │   ├── EntryBeforeDeletedEvent.php
│   │   │   ├── EntryBeforePurgeEvent.php
│   │   │   ├── EntryCreatedEvent.php
│   │   │   ├── EntryDeletedEvent.php
│   │   │   ├── EntryEditedEvent.php
│   │   │   ├── EntryHasBeenSeenEvent.php
│   │   │   ├── EntryLockEvent.php
│   │   │   ├── EntryPinEvent.php
│   │   │   ├── EntryRestoredEvent.php
│   │   │   └── PostLockEvent.php
│   │   ├── EntryComment/
│   │   │   ├── EntryCommentBeforeDeletedEvent.php
│   │   │   ├── EntryCommentBeforePurgeEvent.php
│   │   │   ├── EntryCommentCreatedEvent.php
│   │   │   ├── EntryCommentDeletedEvent.php
│   │   │   ├── EntryCommentEditedEvent.php
│   │   │   ├── EntryCommentPurgedEvent.php
│   │   │   └── EntryCommentRestoredEvent.php
│   │   ├── FavouriteEvent.php
│   │   ├── ImagePostProcessEvent.php
│   │   ├── Instance/
│   │   │   └── InstanceBanEvent.php
│   │   ├── Magazine/
│   │   │   ├── MagazineBanEvent.php
│   │   │   ├── MagazineBlockedEvent.php
│   │   │   ├── MagazineModeratorAddedEvent.php
│   │   │   ├── MagazineModeratorRemovedEvent.php
│   │   │   ├── MagazineSubscribedEvent.php
│   │   │   └── MagazineUpdatedEvent.php
│   │   ├── NotificationCreatedEvent.php
│   │   ├── Post/
│   │   │   ├── PostBeforeDeletedEvent.php
│   │   │   ├── PostBeforePurgeEvent.php
│   │   │   ├── PostCreatedEvent.php
│   │   │   ├── PostDeletedEvent.php
│   │   │   ├── PostEditedEvent.php
│   │   │   ├── PostHasBeenSeenEvent.php
│   │   │   └── PostRestoredEvent.php
│   │   ├── PostComment/
│   │   │   ├── PostCommentBeforeDeletedEvent.php
│   │   │   ├── PostCommentBeforePurgeEvent.php
│   │   │   ├── PostCommentCreatedEvent.php
│   │   │   ├── PostCommentDeletedEvent.php
│   │   │   ├── PostCommentEditedEvent.php
│   │   │   ├── PostCommentPurgedEvent.php
│   │   │   └── PostCommentRestoredEvent.php
│   │   ├── Report/
│   │   │   ├── ReportApprovedEvent.php
│   │   │   ├── ReportRejectedEvent.php
│   │   │   └── SubjectReportedEvent.php
│   │   ├── User/
│   │   │   ├── UserApplicationApprovedEvent.php
│   │   │   ├── UserApplicationRejectedEvent.php
│   │   │   ├── UserBlockEvent.php
│   │   │   ├── UserEditedEvent.php
│   │   │   └── UserFollowEvent.php
│   │   └── VoteEvent.php
│   ├── EventListener/
│   │   ├── ContentNotificationPurgeListener.php
│   │   ├── FederationStatusListener.php
│   │   ├── LanguageListener.php
│   │   ├── MagazineVisibilityListener.php
│   │   └── UserActivityListener.php
│   ├── EventSubscriber/
│   │   ├── ActivityPub/
│   │   │   ├── GroupWebFingerProfileSubscriber.php
│   │   │   ├── GroupWebFingerSubscriber.php
│   │   │   ├── MagazineFollowSubscriber.php
│   │   │   ├── MagazineModeratorAddedRemovedSubscriber.php
│   │   │   ├── UserFollowSubscriber.php
│   │   │   ├── UserWebFingerProfileSubscriber.php
│   │   │   └── UserWebFingerSubscriber.php
│   │   ├── AuthorizationCodeSubscriber.php
│   │   ├── ContentCountSubscriber.php
│   │   ├── Domain/
│   │   │   ├── DomainBlockSubscriber.php
│   │   │   └── DomainFollowSubscriber.php
│   │   ├── Entry/
│   │   │   ├── EntryCreateSubscriber.php
│   │   │   ├── EntryDeleteSubscriber.php
│   │   │   ├── EntryEditSubscriber.php
│   │   │   ├── EntryPinSubscriber.php
│   │   │   ├── EntryShowSubscriber.php
│   │   │   └── LockSubscriber.php
│   │   ├── EntryComment/
│   │   │   ├── EntryCommentCreateSubscriber.php
│   │   │   ├── EntryCommentDeleteSubscriber.php
│   │   │   └── EntryCommentEditSubscriber.php
│   │   ├── FavouriteHandleSubscriber.php
│   │   ├── Image/
│   │   │   ├── ExifCleanerSubscriber.php
│   │   │   └── ImageCompressSubscriber.php
│   │   ├── Instance/
│   │   │   └── InstanceBanSubscriber.php
│   │   ├── LogoutSubscriber.php
│   │   ├── Magazine/
│   │   │   ├── MagazineBanSubscriber.php
│   │   │   ├── MagazineBlockSubscriber.php
│   │   │   ├── MagazineLogSubscriber.php
│   │   │   └── MagazineUpdatedSubscriber.php
│   │   ├── Monitoring/
│   │   │   ├── CurlRequestSubscriber.php
│   │   │   ├── KernelEventsSubscriber.php
│   │   │   └── MessengerEventsSubscriber.php
│   │   ├── NotificationCreatedSubscriber.php
│   │   ├── Post/
│   │   │   ├── PostCreateSubscriber.php
│   │   │   ├── PostDeleteSubscriber.php
│   │   │   ├── PostEditSubscriber.php
│   │   │   └── PostShowSubscriber.php
│   │   ├── PostComment/
│   │   │   ├── PostCommentCreateSubscriber.php
│   │   │   ├── PostCommentDeleteSubscriber.php
│   │   │   └── PostCommentEditSubscriber.php
│   │   ├── ReportApprovedSubscriber.php
│   │   ├── ReportHandleSubscriber.php
│   │   ├── ReportRejectedSubscriber.php
│   │   ├── SubjectReportedSubscriber.php
│   │   ├── TwigGlobalSubscriber.php
│   │   ├── User/
│   │   │   ├── UserApplicationSubscriber.php
│   │   │   ├── UserBlockSubscriber.php
│   │   │   └── UserEditedSubscriber.php
│   │   └── VoteHandleSubscriber.php
│   ├── Exception/
│   │   ├── BadRequestDtoException.php
│   │   ├── BadUrlException.php
│   │   ├── CorruptedFileException.php
│   │   ├── EntityNotFoundException.php
│   │   ├── EntryLockedException.php
│   │   ├── FavouritedAlreadyException.php
│   │   ├── ImageDownloadTooLargeException.php
│   │   ├── InboxForwardingException.php
│   │   ├── InstanceBannedException.php
│   │   ├── InvalidApGetException.php
│   │   ├── InvalidApPostException.php
│   │   ├── InvalidApSignatureException.php
│   │   ├── InvalidUserPublicKeyException.php
│   │   ├── InvalidWebfingerException.php
│   │   ├── PostLockedException.php
│   │   ├── PostingRestrictedException.php
│   │   ├── SubjectHasBeenReportedException.php
│   │   ├── TagBannedException.php
│   │   ├── UserBannedException.php
│   │   ├── UserBlockedException.php
│   │   ├── UserCannotBeBanned.php
│   │   ├── UserCannotReceiveDirectMessage.php
│   │   └── UserDeletedException.php
│   ├── Factory/
│   │   ├── ActivityPub/
│   │   │   ├── ActivityFactory.php
│   │   │   ├── AddRemoveFactory.php
│   │   │   ├── BlockFactory.php
│   │   │   ├── CollectionFactory.php
│   │   │   ├── EntryCommentNoteFactory.php
│   │   │   ├── EntryPageFactory.php
│   │   │   ├── FlagFactory.php
│   │   │   ├── GroupFactory.php
│   │   │   ├── InstanceFactory.php
│   │   │   ├── LockFactory.php
│   │   │   ├── MessageFactory.php
│   │   │   ├── NodeInfoFactory.php
│   │   │   ├── PersonFactory.php
│   │   │   ├── PostCommentNoteFactory.php
│   │   │   ├── PostNoteFactory.php
│   │   │   └── TombstoneFactory.php
│   │   ├── BadgeFactory.php
│   │   ├── ClientConsentsFactory.php
│   │   ├── ClientFactory.php
│   │   ├── ContentActivityDtoFactory.php
│   │   ├── ContentManagerFactory.php
│   │   ├── DomainFactory.php
│   │   ├── EntryCommentFactory.php
│   │   ├── EntryFactory.php
│   │   ├── FavouriteFactory.php
│   │   ├── ImageFactory.php
│   │   ├── MagazineFactory.php
│   │   ├── MessageFactory.php
│   │   ├── ModeratorFactory.php
│   │   ├── PostCommentFactory.php
│   │   ├── PostFactory.php
│   │   ├── ReportFactory.php
│   │   ├── UserFactory.php
│   │   └── VoteFactory.php
│   ├── Feed/
│   │   └── Provider.php
│   ├── Form/
│   │   ├── BadgeType.php
│   │   ├── BookmarkListType.php
│   │   ├── ChangePasswordFormType.php
│   │   ├── ConfirmDefederationType.php
│   │   ├── Constraint/
│   │   │   └── ImageConstraint.php
│   │   ├── ContactType.php
│   │   ├── DataTransformer/
│   │   │   ├── BadgeCollectionToStringTransformer.php
│   │   │   ├── FeaturedMagazinesBarTransformer.php
│   │   │   ├── TagTransformer.php
│   │   │   └── UserTransformer.php
│   │   ├── EntryCommentType.php
│   │   ├── EntryEditType.php
│   │   ├── EntryType.php
│   │   ├── EventListener/
│   │   │   ├── AddFieldsOnUserEdit.php
│   │   │   ├── AvatarListener.php
│   │   │   ├── CaptchaListener.php
│   │   │   ├── DefaultLanguage.php
│   │   │   ├── DisableFieldsOnEntryEdit.php
│   │   │   ├── DisableFieldsOnMagazineEdit.php
│   │   │   ├── DisableFieldsOnUserEdit.php
│   │   │   ├── ImageListener.php
│   │   │   ├── RemoveFieldsOnEntryImageEdit.php
│   │   │   ├── RemoveFieldsOnEntryLinkCreate.php
│   │   │   └── RemoveRulesFieldIfEmpty.php
│   │   ├── Extension/
│   │   │   └── NoValidateExtension.php
│   │   ├── FederationSettingsType.php
│   │   ├── LangType.php
│   │   ├── MagazineBanType.php
│   │   ├── MagazinePageViewType.php
│   │   ├── MagazineTagsType.php
│   │   ├── MagazineThemeType.php
│   │   ├── MagazineType.php
│   │   ├── MessageType.php
│   │   ├── ModeratorType.php
│   │   ├── ModlogFilterType.php
│   │   ├── MonitoringExecutionContextFilterType.php
│   │   ├── PageType.php
│   │   ├── PostCommentType.php
│   │   ├── PostType.php
│   │   ├── ReportType.php
│   │   ├── ResendEmailActivationFormType.php
│   │   ├── ResetPasswordRequestFormType.php
│   │   ├── SearchType.php
│   │   ├── SettingsType.php
│   │   ├── Type/
│   │   │   ├── BadgesType.php
│   │   │   ├── LanguageType.php
│   │   │   ├── MagazineAutocompleteType.php
│   │   │   └── UserAutocompleteType.php
│   │   ├── UserAccountDeletionType.php
│   │   ├── UserBasicType.php
│   │   ├── UserDisable2FAType.php
│   │   ├── UserEmailType.php
│   │   ├── UserFilterListType.php
│   │   ├── UserFilterWordType.php
│   │   ├── UserNoteType.php
│   │   ├── UserPasswordType.php
│   │   ├── UserRegenerate2FABackupType.php
│   │   ├── UserRegisterType.php
│   │   ├── UserSettingsType.php
│   │   └── UserTwoFactorType.php
│   ├── Kernel.php
│   ├── Markdown/
│   │   ├── CommonMark/
│   │   │   ├── CommunityLinkParser.php
│   │   │   ├── DetailsBlockParser.php
│   │   │   ├── DetailsBlockRenderer.php
│   │   │   ├── DetailsBlockStartParser.php
│   │   │   ├── EmbedElement.php
│   │   │   ├── ExternalImagesRenderer.php
│   │   │   ├── ExternalLinkRenderer.php
│   │   │   ├── MentionLinkParser.php
│   │   │   ├── MentionType.php
│   │   │   ├── Node/
│   │   │   │   ├── ActivityPubMentionLink.php
│   │   │   │   ├── ActorSearchLink.php
│   │   │   │   ├── CommunityLink.php
│   │   │   │   ├── DetailsBlock.php
│   │   │   │   ├── MentionLink.php
│   │   │   │   ├── RoutedMentionLink.php
│   │   │   │   ├── TagLink.php
│   │   │   │   └── UnresolvableLink.php
│   │   │   ├── TagLinkParser.php
│   │   │   └── UnresolvableLinkRenderer.php
│   │   ├── Event/
│   │   │   ├── BuildCacheContext.php
│   │   │   └── ConvertMarkdown.php
│   │   ├── Factory/
│   │   │   ├── ConverterFactory.php
│   │   │   └── EnvironmentFactory.php
│   │   ├── Listener/
│   │   │   ├── CacheMarkdownListener.php
│   │   │   └── ConvertMarkdownListener.php
│   │   ├── MarkdownConverter.php
│   │   ├── MarkdownExtension.php
│   │   └── RenderTarget.php
│   ├── Message/
│   │   ├── ActivityPub/
│   │   │   ├── Inbox/
│   │   │   │   ├── ActivityMessage.php
│   │   │   │   ├── AddMessage.php
│   │   │   │   ├── AnnounceMessage.php
│   │   │   │   ├── BlockMessage.php
│   │   │   │   ├── ChainActivityMessage.php
│   │   │   │   ├── CreateMessage.php
│   │   │   │   ├── DeleteMessage.php
│   │   │   │   ├── DislikeMessage.php
│   │   │   │   ├── EntryPinMessage.php
│   │   │   │   ├── FlagMessage.php
│   │   │   │   ├── FollowMessage.php
│   │   │   │   ├── LikeMessage.php
│   │   │   │   ├── LockMessage.php
│   │   │   │   ├── RemoveMessage.php
│   │   │   │   └── UpdateMessage.php
│   │   │   ├── Outbox/
│   │   │   │   ├── AddMessage.php
│   │   │   │   ├── AnnounceLikeMessage.php
│   │   │   │   ├── AnnounceMessage.php
│   │   │   │   ├── BlockMessage.php
│   │   │   │   ├── CreateMessage.php
│   │   │   │   ├── DeleteMessage.php
│   │   │   │   ├── DeliverMessage.php
│   │   │   │   ├── EntryPinMessage.php
│   │   │   │   ├── FlagMessage.php
│   │   │   │   ├── FollowMessage.php
│   │   │   │   ├── GenericAnnounceMessage.php
│   │   │   │   ├── LikeMessage.php
│   │   │   │   ├── LockMessage.php
│   │   │   │   ├── RemoveMessage.php
│   │   │   │   └── UpdateMessage.php
│   │   │   └── UpdateActorMessage.php
│   │   ├── ClearDeadMessagesMessage.php
│   │   ├── ClearDeletedUserMessage.php
│   │   ├── Contracts/
│   │   │   ├── ActivityPubInboxInterface.php
│   │   │   ├── ActivityPubInboxReceiveInterface.php
│   │   │   ├── ActivityPubOutboxDeliverInterface.php
│   │   │   ├── ActivityPubOutboxInterface.php
│   │   │   ├── ActivityPubResolveInterface.php
│   │   │   ├── AsyncMessageInterface.php
│   │   │   ├── MessageInterface.php
│   │   │   ├── SchedulerInterface.php
│   │   │   └── SendConfirmationEmailInterface.php
│   │   ├── DeleteImageMessage.php
│   │   ├── DeleteUserMessage.php
│   │   ├── EntryEmbedMessage.php
│   │   ├── LinkEmbedMessage.php
│   │   ├── MagazinePurgeMessage.php
│   │   ├── Notification/
│   │   │   ├── EntryCommentCreatedNotificationMessage.php
│   │   │   ├── EntryCommentDeletedNotificationMessage.php
│   │   │   ├── EntryCommentEditedNotificationMessage.php
│   │   │   ├── EntryCreatedNotificationMessage.php
│   │   │   ├── EntryDeletedNotificationMessage.php
│   │   │   ├── EntryEditedNotificationMessage.php
│   │   │   ├── FavouriteNotificationMessage.php
│   │   │   ├── MagazineBanNotificationMessage.php
│   │   │   ├── PostCommentCreatedNotificationMessage.php
│   │   │   ├── PostCommentDeletedNotificationMessage.php
│   │   │   ├── PostCommentEditedNotificationMessage.php
│   │   │   ├── PostCreatedNotificationMessage.php
│   │   │   ├── PostDeletedNotificationMessage.php
│   │   │   ├── PostEditedNotificationMessage.php
│   │   │   ├── SentNewSignupNotificationMessage.php
│   │   │   └── VoteNotificationMessage.php
│   │   ├── UserApplicationAnswerMessage.php
│   │   ├── UserCreatedMessage.php
│   │   └── UserUpdatedMessage.php
│   ├── MessageHandler/
│   │   ├── ActivityPub/
│   │   │   ├── Inbox/
│   │   │   │   ├── ActivityHandler.php
│   │   │   │   ├── AddHandler.php
│   │   │   │   ├── AnnounceHandler.php
│   │   │   │   ├── BlockHandler.php
│   │   │   │   ├── ChainActivityHandler.php
│   │   │   │   ├── CreateHandler.php
│   │   │   │   ├── DeleteHandler.php
│   │   │   │   ├── DislikeHandler.php
│   │   │   │   ├── FlagHandler.php
│   │   │   │   ├── FollowHandler.php
│   │   │   │   ├── LikeHandler.php
│   │   │   │   ├── LockHandler.php
│   │   │   │   ├── RemoveHandler.php
│   │   │   │   └── UpdateHandler.php
│   │   │   ├── Outbox/
│   │   │   │   ├── AddHandler.php
│   │   │   │   ├── AnnounceHandler.php
│   │   │   │   ├── AnnounceLikeHandler.php
│   │   │   │   ├── BlockHandler.php
│   │   │   │   ├── CreateHandler.php
│   │   │   │   ├── DeleteHandler.php
│   │   │   │   ├── DeliverHandler.php
│   │   │   │   ├── EntryPinMessageHandler.php
│   │   │   │   ├── FlagHandler.php
│   │   │   │   ├── FollowHandler.php
│   │   │   │   ├── GenericAnnounceHandler.php
│   │   │   │   ├── LikeHandler.php
│   │   │   │   ├── LockHandler.php
│   │   │   │   ├── RemoveHandler.php
│   │   │   │   └── UpdateHandler.php
│   │   │   └── UpdateActorHandler.php
│   │   ├── AttachEntryEmbedHandler.php
│   │   ├── ClearDeadMessagesHandler.php
│   │   ├── ClearDeletedUserHandler.php
│   │   ├── DeleteImageHandler.php
│   │   ├── DeleteUserHandler.php
│   │   ├── LinkEmbedHandler.php
│   │   ├── MagazinePurgeHandler.php
│   │   ├── MbinMessageHandler.php
│   │   ├── Notification/
│   │   │   ├── SentEntryCommentCreatedNotificationHandler.php
│   │   │   ├── SentEntryCommentDeletedNotificationHandler.php
│   │   │   ├── SentEntryCommentEditedNotificationHandler.php
│   │   │   ├── SentEntryCreatedNotificationHandler.php
│   │   │   ├── SentEntryDeletedNotificationHandler.php
│   │   │   ├── SentEntryEditedNotificationHandler.php
│   │   │   ├── SentFavouriteNotificationHandler.php
│   │   │   ├── SentMagazineBanNotificationHandler.php
│   │   │   ├── SentNewSignupNotificationHandler.php
│   │   │   ├── SentPostCommentCreatedNotificationHandler.php
│   │   │   ├── SentPostCommentDeletedNotificationHandler.php
│   │   │   ├── SentPostCommentEditedNotificationHandler.php
│   │   │   ├── SentPostCreatedNotificationHandler.php
│   │   │   ├── SentPostDeletedNotificationHandler.php
│   │   │   ├── SentPostEditedNotificationHandler.php
│   │   │   └── SentVoteNotificationHandler.php
│   │   ├── SendApplicationAnswerMailHandler.php
│   │   └── SentUserConfirmationEmailHandler.php
│   ├── Middleware/
│   │   └── Monitoring/
│   │       ├── DoctrineConnectionMiddleware.php
│   │       ├── DoctrineDriverMiddleware.php
│   │       ├── DoctrineMiddleware.php
│   │       └── DoctrineStatementMiddleware.php
│   ├── PageView/
│   │   ├── ContentPageView.php
│   │   ├── EntryCommentPageView.php
│   │   ├── EntryPageView.php
│   │   ├── MagazinePageView.php
│   │   ├── MessageThreadPageView.php
│   │   ├── PostCommentPageView.php
│   │   └── PostPageView.php
│   ├── Pagination/
│   │   ├── AdapterFactory.php
│   │   ├── CachingQueryAdapter.php
│   │   ├── Cursor/
│   │   │   ├── CursorAdapterInterface.php
│   │   │   ├── CursorPagination.php
│   │   │   ├── CursorPaginationInterface.php
│   │   │   └── NativeQueryCursorAdapter.php
│   │   ├── NativeQueryAdapter.php
│   │   ├── Pagerfanta.php
│   │   ├── QueryAdapter.php
│   │   └── Transformation/
│   │       ├── ContentPopulationTransformer.php
│   │       ├── ResultTransformer.php
│   │       └── VoidTransformer.php
│   ├── Payloads/
│   │   ├── NodeInfo/
│   │   │   ├── NodeInfo.php
│   │   │   ├── NodeInfoServices.php
│   │   │   ├── NodeInfoSoftware.php
│   │   │   ├── NodeInfoSoftware21.php
│   │   │   ├── NodeInfoUsage.php
│   │   │   ├── NodeInfoUsageUsers.php
│   │   │   ├── WellKnownEndpoint.php
│   │   │   └── WellKnownNodeInfo.php
│   │   ├── NotificationsCountResponsePayload.php
│   │   ├── PushNotification.php
│   │   ├── RegisterPushRequestPayload.php
│   │   ├── TestPushRequestPayload.php
│   │   └── UnRegisterPushRequestPayload.php
│   ├── Provider/
│   │   ├── Authentik.php
│   │   ├── AuthentikResourceOwner.php
│   │   ├── SimpleLogin.php
│   │   ├── SimpleLoginResourceOwner.php
│   │   ├── Zitadel.php
│   │   └── ZitadelResourceOwner.php
│   ├── Repository/
│   │   ├── .gitignore
│   │   ├── ActivityRepository.php
│   │   ├── ApActivityRepository.php
│   │   ├── BadgeRepository.php
│   │   ├── BookmarkListRepository.php
│   │   ├── BookmarkRepository.php
│   │   ├── ContentRepository.php
│   │   ├── Criteria.php
│   │   ├── DomainRepository.php
│   │   ├── DomainSubscriptionRepository.php
│   │   ├── EmbedRepository.php
│   │   ├── EntryCommentRepository.php
│   │   ├── EntryRepository.php
│   │   ├── FavouriteRepository.php
│   │   ├── ImageRepository.php
│   │   ├── InstanceRepository.php
│   │   ├── MagazineBanRepository.php
│   │   ├── MagazineBlockRepository.php
│   │   ├── MagazineLogRepository.php
│   │   ├── MagazineOwnershipRequestRepository.php
│   │   ├── MagazineRepository.php
│   │   ├── MagazineSubscriptionRepository.php
│   │   ├── MagazineSubscriptionRequestRepository.php
│   │   ├── MessageRepository.php
│   │   ├── MessageThreadRepository.php
│   │   ├── ModeratorRequestRepository.php
│   │   ├── MonitoringRepository.php
│   │   ├── NotificationRepository.php
│   │   ├── NotificationSettingsRepository.php
│   │   ├── OAuth2ClientAccessRepository.php
│   │   ├── OAuth2UserConsentRepository.php
│   │   ├── PostCommentRepository.php
│   │   ├── PostRepository.php
│   │   ├── ReportRepository.php
│   │   ├── ReputationRepository.php
│   │   ├── ResetPasswordRequestRepository.php
│   │   ├── SearchRepository.php
│   │   ├── SettingsRepository.php
│   │   ├── SiteRepository.php
│   │   ├── StatsContentRepository.php
│   │   ├── StatsRepository.php
│   │   ├── StatsVotesRepository.php
│   │   ├── TagLinkRepository.php
│   │   ├── TagRepository.php
│   │   ├── UserBlockRepository.php
│   │   ├── UserFollowRepository.php
│   │   ├── UserFollowRequestRepository.php
│   │   ├── UserNoteRepository.php
│   │   ├── UserPushSubscriptionRepository.php
│   │   ├── UserRepository.php
│   │   └── VoteRepository.php
│   ├── Scheduler/
│   │   └── MbinTaskProvider.php
│   ├── Schema/
│   │   ├── ContentSchema.php
│   │   ├── CursorPaginationSchema.php
│   │   ├── Errors/
│   │   │   ├── BadRequestErrorSchema.php
│   │   │   ├── ForbiddenErrorSchema.php
│   │   │   ├── NotFoundErrorSchema.php
│   │   │   ├── TooManyRequestsErrorSchema.php
│   │   │   └── UnauthorizedErrorSchema.php
│   │   ├── InfoSchema.php
│   │   ├── NotificationSchema.php
│   │   ├── PaginationSchema.php
│   │   └── SearchActorSchema.php
│   ├── Security/
│   │   ├── AuthentikAuthenticator.php
│   │   ├── AzureAuthenticator.php
│   │   ├── DiscordAuthenticator.php
│   │   ├── EmailVerifier.php
│   │   ├── FacebookAuthenticator.php
│   │   ├── GithubAuthenticator.php
│   │   ├── GoogleAuthenticator.php
│   │   ├── KbinAuthenticator.php
│   │   ├── KeycloakAuthenticator.php
│   │   ├── MbinOAuthAuthenticatorBase.php
│   │   ├── OAuth/
│   │   │   └── ClientCredentialsGrant.php
│   │   ├── PrivacyPortalAuthenticator.php
│   │   ├── SimpleLoginAuthenticator.php
│   │   ├── UserChecker.php
│   │   ├── Voter/
│   │   │   ├── EntryCommentVoter.php
│   │   │   ├── EntryVoter.php
│   │   │   ├── FilterListVoter.php
│   │   │   ├── MagazineVoter.php
│   │   │   ├── MessageThreadVoter.php
│   │   │   ├── MessageVoter.php
│   │   │   ├── NotificationVoter.php
│   │   │   ├── OAuth2UserConsentVoter.php
│   │   │   ├── PostCommentVoter.php
│   │   │   ├── PostVoter.php
│   │   │   ├── PrivateInstanceVoter.php
│   │   │   └── UserVoter.php
│   │   └── ZitadelAuthenticator.php
│   ├── Service/
│   │   ├── ActivityPub/
│   │   │   ├── ActivityJsonBuilder.php
│   │   │   ├── ActivityPubContent.php
│   │   │   ├── ApHttpClient.php
│   │   │   ├── ApHttpClientInterface.php
│   │   │   ├── ApObjectExtractor.php
│   │   │   ├── ContextsProvider.php
│   │   │   ├── DeleteService.php
│   │   │   ├── HttpSignature.php
│   │   │   ├── KeysGenerator.php
│   │   │   ├── MarkdownConverter.php
│   │   │   ├── Note.php
│   │   │   ├── Page.php
│   │   │   ├── SignatureValidator.php
│   │   │   ├── StrikethroughConverter.php
│   │   │   ├── Webfinger/
│   │   │   │   ├── WebFinger.php
│   │   │   │   ├── WebFingerFactory.php
│   │   │   │   └── WebFingerParameters.php
│   │   │   └── Wrapper/
│   │   │       ├── AnnounceWrapper.php
│   │   │       ├── CollectionInfoWrapper.php
│   │   │       ├── CollectionItemsWrapper.php
│   │   │       ├── CreateWrapper.php
│   │   │       ├── DeleteWrapper.php
│   │   │       ├── FollowResponseWrapper.php
│   │   │       ├── FollowWrapper.php
│   │   │       ├── ImageWrapper.php
│   │   │       ├── LikeWrapper.php
│   │   │       ├── MentionsWrapper.php
│   │   │       ├── TagsWrapper.php
│   │   │       ├── UndoWrapper.php
│   │   │       └── UpdateWrapper.php
│   │   ├── ActivityPubManager.php
│   │   ├── BadgeManager.php
│   │   ├── BookmarkManager.php
│   │   ├── CacheService.php
│   │   ├── ContactManager.php
│   │   ├── Contracts/
│   │   │   ├── ContentManagerInterface.php
│   │   │   ├── ContentNotificationManagerInterface.php
│   │   │   └── ManagerInterface.php
│   │   ├── DeliverManager.php
│   │   ├── DomainManager.php
│   │   ├── EntryCommentManager.php
│   │   ├── EntryManager.php
│   │   ├── FactoryResolver.php
│   │   ├── FavouriteManager.php
│   │   ├── FeedManager.php
│   │   ├── GenerateHtmlClassService.php
│   │   ├── ImageManager.php
│   │   ├── ImageManagerInterface.php
│   │   ├── InstanceManager.php
│   │   ├── InstanceStatsManager.php
│   │   ├── IpResolver.php
│   │   ├── MagazineManager.php
│   │   ├── MentionManager.php
│   │   ├── MessageManager.php
│   │   ├── Monitor.php
│   │   ├── MonologFilterHandler.php
│   │   ├── Notification/
│   │   │   ├── EntryCommentNotificationManager.php
│   │   │   ├── EntryNotificationManager.php
│   │   │   ├── MagazineBanNotificationManager.php
│   │   │   ├── MessageNotificationManager.php
│   │   │   ├── NotificationTrait.php
│   │   │   ├── PostCommentNotificationManager.php
│   │   │   ├── PostNotificationManager.php
│   │   │   ├── ReportNotificationManager.php
│   │   │   ├── SignupNotificationManager.php
│   │   │   └── UserPushSubscriptionManager.php
│   │   ├── NotificationManager.php
│   │   ├── NotificationManagerTypeResolver.php
│   │   ├── OAuthTokenRevoker.php
│   │   ├── PeopleManager.php
│   │   ├── PostCommentManager.php
│   │   ├── PostManager.php
│   │   ├── ProjectInfoService.php
│   │   ├── RemoteInstanceManager.php
│   │   ├── ReportManager.php
│   │   ├── ReputationManager.php
│   │   ├── SearchManager.php
│   │   ├── SettingsManager.php
│   │   ├── StatsManager.php
│   │   ├── SubjectOverviewManager.php
│   │   ├── TagExtractor.php
│   │   ├── TagManager.php
│   │   ├── TwoFactorManager.php
│   │   ├── UserManager.php
│   │   ├── UserNoteManager.php
│   │   ├── UserSettingsManager.php
│   │   ├── VideoManager.php
│   │   ├── VotableRepositoryResolver.php
│   │   └── VoteManager.php
│   ├── Twig/
│   │   ├── Components/
│   │   │   ├── ActiveUsersComponent.php
│   │   │   ├── AnnouncementComponent.php
│   │   │   ├── BlurhashImageComponent.php
│   │   │   ├── BookmarkListComponent.php
│   │   │   ├── BookmarkMenuListComponent.php
│   │   │   ├── BookmarkStandardComponent.php
│   │   │   ├── BoostComponent.php
│   │   │   ├── CursorPaginationComponent.php
│   │   │   ├── DateComponent.php
│   │   │   ├── DateEditedComponent.php
│   │   │   ├── DomainComponent.php
│   │   │   ├── DomainSubComponent.php
│   │   │   ├── EditorToolbarComponent.php
│   │   │   ├── EntriesCrossComponent.php
│   │   │   ├── EntryCommentComponent.php
│   │   │   ├── EntryCommentInlineComponent.php
│   │   │   ├── EntryCommentsNestedComponent.php
│   │   │   ├── EntryComponent.php
│   │   │   ├── EntryCrossComponent.php
│   │   │   ├── EntryInlineComponent.php
│   │   │   ├── EntryInlineMdComponent.php
│   │   │   ├── FavouriteComponent.php
│   │   │   ├── FeaturedMagazinesComponent.php
│   │   │   ├── FilterListComponent.php
│   │   │   ├── InstanceList.php
│   │   │   ├── LoaderComponent.php
│   │   │   ├── LoginSocialsComponent.php
│   │   │   ├── MagazineBoxComponent.php
│   │   │   ├── MagazineInlineComponent.php
│   │   │   ├── MagazineSubComponent.php
│   │   │   ├── MonitoringTwigRenderComponent.php
│   │   │   ├── NotificationSwitch.php
│   │   │   ├── PostCombinedComponent.php
│   │   │   ├── PostCommentCombinedComponent.php
│   │   │   ├── PostCommentComponent.php
│   │   │   ├── PostCommentInlineComponent.php
│   │   │   ├── PostCommentsNestedComponent.php
│   │   │   ├── PostCommentsPreviewComponent.php
│   │   │   ├── PostComponent.php
│   │   │   ├── PostInlineMdComponent.php
│   │   │   ├── RelatedEntriesComponent.php
│   │   │   ├── RelatedMagazinesComponent.php
│   │   │   ├── RelatedPostsComponent.php
│   │   │   ├── ReportListComponent.php
│   │   │   ├── SettingsRowEnumComponent.php
│   │   │   ├── SettingsRowSwitchComponent.php
│   │   │   ├── SidebarSubscriptionComponent.php
│   │   │   ├── TagActionComponent.php
│   │   │   ├── UserActionsComponent.php
│   │   │   ├── UserAvatarComponent.php
│   │   │   ├── UserBoxComponent.php
│   │   │   ├── UserFormActionsComponent.php
│   │   │   ├── UserImageComponent.php
│   │   │   ├── UserInlineBoxComponent.php
│   │   │   ├── UserInlineComponent.php
│   │   │   ├── VoteComponent.php
│   │   │   └── VotersInlineComponent.php
│   │   ├── Extension/
│   │   │   ├── AdminExtension.php
│   │   │   ├── BookmarkExtension.php
│   │   │   ├── ContextExtension.php
│   │   │   ├── CounterExtension.php
│   │   │   ├── DomainExtension.php
│   │   │   ├── EmailExtension.php
│   │   │   ├── FormattingExtension.php
│   │   │   ├── FrontExtension.php
│   │   │   ├── LinkExtension.php
│   │   │   ├── MagazineExtension.php
│   │   │   ├── MediaExtension.php
│   │   │   ├── MonitorExtension.php
│   │   │   ├── NavbarExtension.php
│   │   │   ├── SettingsExtension.php
│   │   │   ├── SubjectExtension.php
│   │   │   ├── UrlExtension.php
│   │   │   └── UserExtension.php
│   │   └── Runtime/
│   │       ├── AdminExtensionRuntime.php
│   │       ├── BookmarkExtensionRuntime.php
│   │       ├── ContextExtensionRuntime.php
│   │       ├── CounterExtensionRuntime.php
│   │       ├── DomainExtensionRuntime.php
│   │       ├── EmailExtensionRuntime.php
│   │       ├── FormattingExtensionRuntime.php
│   │       ├── FrontExtensionRuntime.php
│   │       ├── LinkExtensionRuntime.php
│   │       ├── MagazineExtensionRuntime.php
│   │       ├── MediaExtensionRuntime.php
│   │       ├── NavbarExtensionRuntime.php
│   │       ├── SettingsExtensionRuntime.php
│   │       ├── SubjectExtensionRuntime.php
│   │       ├── UrlExtensionRuntime.php
│   │       └── UserExtensionRuntime.php
│   ├── Utils/
│   │   ├── AddErrorDetailsStampListener.php
│   │   ├── ArrayUtils.php
│   │   ├── DownvotesMode.php
│   │   ├── Embed.php
│   │   ├── ExifCleanMode.php
│   │   ├── ExifCleaner.php
│   │   ├── GeneralUtil.php
│   │   ├── ImageOrigin.php
│   │   ├── IriGenerator.php
│   │   ├── JsonldUtils.php
│   │   ├── RegPatterns.php
│   │   ├── Slugger.php
│   │   ├── SqlHelpers.php
│   │   ├── SubscriptionSort.php
│   │   ├── UrlCleaner.php
│   │   └── UrlUtils.php
│   └── Validator/
│       ├── NoSurroundingWhitespace.php
│       ├── NoSurroundingWhitespaceValidator.php
│       ├── Unique.php
│       └── UniqueValidator.php
├── templates/
│   ├── _email/
│   │   ├── application_approved.html.twig
│   │   ├── application_rejected.html.twig
│   │   ├── confirmation_email.html.twig
│   │   ├── contact.html.twig
│   │   ├── delete_account_request.html.twig
│   │   ├── email_base.html.twig
│   │   └── reset_pass_confirm.html.twig
│   ├── admin/
│   │   ├── _options.html.twig
│   │   ├── dashboard.html.twig
│   │   ├── deletion_magazines.html.twig
│   │   ├── deletion_users.html.twig
│   │   ├── federation.html.twig
│   │   ├── federation_defederate_instance.html.twig
│   │   ├── magazine_ownership.html.twig
│   │   ├── moderators.html.twig
│   │   ├── monitoring/
│   │   │   ├── _monitoring_single_options.html.twig
│   │   │   ├── _monitoring_single_overview.html.twig
│   │   │   ├── _monitoring_single_queries.html.twig
│   │   │   ├── _monitoring_single_requests.html.twig
│   │   │   ├── _monitoring_single_twig.html.twig
│   │   │   ├── monitoring.html.twig
│   │   │   └── monitoring_single.html.twig
│   │   ├── pages.html.twig
│   │   ├── reports.html.twig
│   │   ├── settings.html.twig
│   │   ├── signup_requests.html.twig
│   │   └── users.html.twig
│   ├── base.html.twig
│   ├── bookmark/
│   │   ├── _form_edit.html.twig
│   │   ├── _options.html.twig
│   │   ├── edit.html.twig
│   │   ├── front.html.twig
│   │   └── overview.html.twig
│   ├── bundles/
│   │   ├── NelmioApiDocBundle/
│   │   │   └── SwaggerUi/
│   │   │       └── index.html.twig
│   │   └── TwigBundle/
│   │       └── Exception/
│   │           ├── error.html.twig
│   │           ├── error403.html.twig
│   │           ├── error404.html.twig
│   │           ├── error429.html.twig
│   │           └── error500.html.twig
│   ├── components/
│   │   ├── _ajax.html.twig
│   │   ├── _cached.html.twig
│   │   ├── _comment_collapse_button.html.twig
│   │   ├── _details_label.css.twig
│   │   ├── _entry_comments_nested_hidden_private_threads.html.twig
│   │   ├── _figure_entry.html.twig
│   │   ├── _figure_image.html.twig
│   │   ├── _loading_icon.html.twig
│   │   ├── _post_comments_nested_hidden_private_threads.html.twig
│   │   ├── _settings_row_enum.html.twig
│   │   ├── _settings_row_switch.html.twig
│   │   ├── active_users.html.twig
│   │   ├── announcement.html.twig
│   │   ├── blurhash_image.html.twig
│   │   ├── bookmark_list.html.twig
│   │   ├── bookmark_menu_list.html.twig
│   │   ├── bookmark_standard.html.twig
│   │   ├── boost.html.twig
│   │   ├── cursor_pagination.html.twig
│   │   ├── date.html.twig
│   │   ├── date_edited.html.twig
│   │   ├── domain.html.twig
│   │   ├── domain_sub.html.twig
│   │   ├── editor_toolbar.html.twig
│   │   ├── entries_cross.html.twig
│   │   ├── entry.html.twig
│   │   ├── entry_comment.html.twig
│   │   ├── entry_comment_inline_md.html.twig
│   │   ├── entry_comments_nested.html.twig
│   │   ├── entry_cross.html.twig
│   │   ├── entry_inline.html.twig
│   │   ├── entry_inline_md.html.twig
│   │   ├── favourite.html.twig
│   │   ├── featured_magazines.html.twig
│   │   ├── filter_list.html.twig
│   │   ├── instance_list.html.twig
│   │   ├── loader.html.twig
│   │   ├── login_socials.html.twig
│   │   ├── magazine_box.html.twig
│   │   ├── magazine_inline.html.twig
│   │   ├── magazine_inline_md.html.twig
│   │   ├── magazine_sub.html.twig
│   │   ├── monitoring_twig_render.html.twig
│   │   ├── notification_switch.html.twig
│   │   ├── post.html.twig
│   │   ├── post_combined.html.twig
│   │   ├── post_comment.html.twig
│   │   ├── post_comment_combined.html.twig
│   │   ├── post_comment_inline_md.html.twig
│   │   ├── post_comments_nested.html.twig
│   │   ├── post_comments_preview.html.twig
│   │   ├── post_inline_md.html.twig
│   │   ├── related_entries.html.twig
│   │   ├── related_magazines.html.twig
│   │   ├── related_posts.html.twig
│   │   ├── report_list.html.twig
│   │   ├── tag_actions.html.twig
│   │   ├── user_actions.html.twig
│   │   ├── user_avatar.html.twig
│   │   ├── user_box.html.twig
│   │   ├── user_form_actions.html.twig
│   │   ├── user_image_component.html.twig
│   │   ├── user_inline.html.twig
│   │   ├── user_inline_box.html.twig
│   │   ├── user_inline_md.html.twig
│   │   ├── vote.html.twig
│   │   └── voters_inline.html.twig
│   ├── content/
│   │   ├── _list.html.twig
│   │   └── front.html.twig
│   ├── domain/
│   │   ├── _header_nav.html.twig
│   │   ├── _list.html.twig
│   │   ├── _options.html.twig
│   │   ├── comment/
│   │   │   └── front.html.twig
│   │   └── front.html.twig
│   ├── entry/
│   │   ├── _create_options.html.twig
│   │   ├── _form_edit.html.twig
│   │   ├── _form_entry.html.twig
│   │   ├── _info.html.twig
│   │   ├── _list.html.twig
│   │   ├── _menu.html.twig
│   │   ├── _moderate_panel.html.twig
│   │   ├── _options.html.twig
│   │   ├── _options_activity.html.twig
│   │   ├── comment/
│   │   │   ├── _form_comment.html.twig
│   │   │   ├── _list.html.twig
│   │   │   ├── _menu.html.twig
│   │   │   ├── _moderate_panel.html.twig
│   │   │   ├── _no_comments.html.twig
│   │   │   ├── _options.html.twig
│   │   │   ├── _options_activity.html.twig
│   │   │   ├── create.html.twig
│   │   │   ├── edit.html.twig
│   │   │   ├── favourites.html.twig
│   │   │   ├── front.html.twig
│   │   │   ├── moderate.html.twig
│   │   │   ├── view.html.twig
│   │   │   └── voters.html.twig
│   │   ├── create_entry.html.twig
│   │   ├── edit_entry.html.twig
│   │   ├── favourites.html.twig
│   │   ├── moderate.html.twig
│   │   ├── single.html.twig
│   │   └── voters.html.twig
│   ├── form/
│   │   └── lang_select.html.twig
│   ├── layout/
│   │   ├── _domain_activity_list.html.twig
│   │   ├── _flash.html.twig
│   │   ├── _form_media.html.twig
│   │   ├── _generic_subject_list.html.twig
│   │   ├── _header.html.twig
│   │   ├── _header_bread.html.twig
│   │   ├── _header_nav.html.twig
│   │   ├── _magazine_activity_list.html.twig
│   │   ├── _options_appearance.html.twig
│   │   ├── _options_font_size.html.twig
│   │   ├── _options_theme.html.twig
│   │   ├── _pagination.html.twig
│   │   ├── _sidebar.html.twig
│   │   ├── _subject.html.twig
│   │   ├── _subject_link.html.twig
│   │   ├── _subject_list.html.twig
│   │   ├── _topbar.html.twig
│   │   ├── _user_activity_list.html.twig
│   │   └── sidebar_subscriptions.html.twig
│   ├── magazine/
│   │   ├── _federated_info.html.twig
│   │   ├── _list.html.twig
│   │   ├── _moderators_list.html.twig
│   │   ├── _moderators_sidebar.html.twig
│   │   ├── _options.html.twig
│   │   ├── _restricted_info.html.twig
│   │   ├── _visibility_info.html.twig
│   │   ├── create.html.twig
│   │   ├── list_abandoned.html.twig
│   │   ├── list_all.html.twig
│   │   ├── moderators.html.twig
│   │   └── panel/
│   │       ├── _options.html.twig
│   │       ├── _stats_pills.html.twig
│   │       ├── badges.html.twig
│   │       ├── ban.html.twig
│   │       ├── bans.html.twig
│   │       ├── general.html.twig
│   │       ├── moderator_requests.html.twig
│   │       ├── moderators.html.twig
│   │       ├── reports.html.twig
│   │       ├── stats.html.twig
│   │       ├── tags.html.twig
│   │       ├── theme.html.twig
│   │       └── trash.html.twig
│   ├── messages/
│   │   ├── _form_create.html.twig
│   │   ├── front.html.twig
│   │   └── single.html.twig
│   ├── modlog/
│   │   ├── _blocks.html.twig
│   │   └── front.html.twig
│   ├── notifications/
│   │   ├── _blocks.html.twig
│   │   └── front.html.twig
│   ├── page/
│   │   ├── about.html.twig
│   │   ├── agent.html.twig
│   │   ├── contact.html.twig
│   │   ├── faq.html.twig
│   │   ├── federation.html.twig
│   │   ├── privacy_policy.html.twig
│   │   └── terms.html.twig
│   ├── people/
│   │   └── front.html.twig
│   ├── post/
│   │   ├── _form_post.html.twig
│   │   ├── _info.html.twig
│   │   ├── _list.html.twig
│   │   ├── _menu.html.twig
│   │   ├── _moderate_panel.html.twig
│   │   ├── _options.html.twig
│   │   ├── _options_activity.html.twig
│   │   ├── comment/
│   │   │   ├── _form_comment.html.twig
│   │   │   ├── _list.html.twig
│   │   │   ├── _menu.html.twig
│   │   │   ├── _moderate_panel.html.twig
│   │   │   ├── _no_comments.html.twig
│   │   │   ├── _options.html.twig
│   │   │   ├── _options_activity.html.twig
│   │   │   ├── _preview.html.twig
│   │   │   ├── create.html.twig
│   │   │   ├── edit.html.twig
│   │   │   ├── favourites.html.twig
│   │   │   ├── moderate.html.twig
│   │   │   └── voters.html.twig
│   │   ├── create.html.twig
│   │   ├── edit.html.twig
│   │   ├── favourites.html.twig
│   │   ├── moderate.html.twig
│   │   ├── single.html.twig
│   │   └── voters.html.twig
│   ├── report/
│   │   ├── _form_report.html.twig
│   │   └── create.html.twig
│   ├── resend_verification_email/
│   │   └── resend.html.twig
│   ├── reset_password/
│   │   ├── check_email.html.twig
│   │   ├── request.html.twig
│   │   └── reset.html.twig
│   ├── search/
│   │   ├── _emoji_suggestion.html.twig
│   │   ├── _list.html.twig
│   │   ├── _user_suggestion.html.twig
│   │   ├── form.html.twig
│   │   └── front.html.twig
│   ├── stats/
│   │   ├── _filters.html.twig
│   │   ├── _options.html.twig
│   │   ├── _stats_count.html.twig
│   │   └── front.html.twig
│   ├── styles/
│   │   └── custom.css.twig
│   ├── tag/
│   │   ├── _list.html.twig
│   │   ├── _options.html.twig
│   │   ├── _panel.html.twig
│   │   ├── comments.html.twig
│   │   ├── front.html.twig
│   │   ├── overview.html.twig
│   │   ├── people.html.twig
│   │   └── posts.html.twig
│   └── user/
│       ├── 2fa.html.twig
│       ├── _admin_panel.html.twig
│       ├── _boost_list.html.twig
│       ├── _federated_info.html.twig
│       ├── _info.html.twig
│       ├── _list.html.twig
│       ├── _options.html.twig
│       ├── _user_popover.html.twig
│       ├── _visibility_info.html.twig
│       ├── comments.html.twig
│       ├── consent.html.twig
│       ├── entries.html.twig
│       ├── followers.html.twig
│       ├── following.html.twig
│       ├── login.html.twig
│       ├── message.html.twig
│       ├── moderated.html.twig
│       ├── overview.html.twig
│       ├── posts.html.twig
│       ├── register.html.twig
│       ├── replies.html.twig
│       ├── reputation.html.twig
│       ├── settings/
│       │   ├── 2fa.html.twig
│       │   ├── 2fa_backup.html.twig
│       │   ├── 2fa_secret.html.twig
│       │   ├── _2fa_backup.html.twig
│       │   ├── _options.html.twig
│       │   ├── _stats_pills.html.twig
│       │   ├── account_deletion.html.twig
│       │   ├── block_domains.html.twig
│       │   ├── block_magazines.html.twig
│       │   ├── block_pills.html.twig
│       │   ├── block_users.html.twig
│       │   ├── email.html.twig
│       │   ├── filter_lists.html.twig
│       │   ├── filter_lists_create.html.twig
│       │   ├── filter_lists_edit.html.twig
│       │   ├── filter_lists_form.html.twig
│       │   ├── general.html.twig
│       │   ├── password.html.twig
│       │   ├── profile.html.twig
│       │   ├── reports.html.twig
│       │   ├── stats.html.twig
│       │   ├── sub_domains.html.twig
│       │   ├── sub_magazines.html.twig
│       │   ├── sub_pills.html.twig
│       │   └── sub_users.html.twig
│       └── subscriptions.html.twig
├── tests/
│   ├── ActivityPubJsonDriver.php
│   ├── ActivityPubTestCase.php
│   ├── FactoryTrait.php
│   ├── Functional/
│   │   ├── ActivityPub/
│   │   │   ├── ActivityPubFunctionalTestCase.php
│   │   │   ├── Inbox/
│   │   │   │   ├── AcceptHandlerTest.php
│   │   │   │   ├── AddHandlerTest.php
│   │   │   │   ├── BlockHandlerTest.php
│   │   │   │   ├── CreateHandlerTest.php
│   │   │   │   ├── DeleteHandlerTest.php
│   │   │   │   ├── DislikeHandlerTest.php
│   │   │   │   ├── FlagHandlerTest.php
│   │   │   │   ├── FollowHandlerTest.php
│   │   │   │   ├── LikeHandlerTest.php
│   │   │   │   ├── LockHandlerTest.php
│   │   │   │   ├── RemoveHandlerTest.php
│   │   │   │   └── UpdateHandlerTest.php
│   │   │   ├── MarkdownConverterTest.php
│   │   │   └── Outbox/
│   │   │       ├── BlockHandlerTest.php
│   │   │       ├── DeleteHandlerTest.php
│   │   │       └── LockHandlerTest.php
│   │   ├── Command/
│   │   │   ├── AdminCommandTest.php
│   │   │   ├── ModeratorCommandTest.php
│   │   │   └── UserCommandTest.php
│   │   ├── Controller/
│   │   │   ├── ActivityPub/
│   │   │   │   ├── GeneralAPTest.php
│   │   │   │   └── UserOutboxControllerTest.php
│   │   │   ├── Admin/
│   │   │   │   ├── AdminFederationControllerTest.php
│   │   │   │   └── AdminUserControllerTest.php
│   │   │   ├── Api/
│   │   │   │   ├── Bookmark/
│   │   │   │   │   ├── BookmarkApiTest.php
│   │   │   │   │   └── BookmarkListApiTest.php
│   │   │   │   ├── Combined/
│   │   │   │   │   ├── CombinedRetrieveApiCursoredTest.php
│   │   │   │   │   └── CombinedRetrieveApiTest.php
│   │   │   │   ├── Domain/
│   │   │   │   │   ├── DomainBlockApiTest.php
│   │   │   │   │   ├── DomainRetrieveApiTest.php
│   │   │   │   │   └── DomainSubscribeApiTest.php
│   │   │   │   ├── Entry/
│   │   │   │   │   ├── Admin/
│   │   │   │   │   │   ├── EntryChangeMagazineApiTest.php
│   │   │   │   │   │   └── EntryPurgeApiTest.php
│   │   │   │   │   ├── Comment/
│   │   │   │   │   │   ├── Admin/
│   │   │   │   │   │   │   └── EntryCommentPurgeApiTest.php
│   │   │   │   │   │   ├── DomainEntryCommentRetrieveApiTest.php
│   │   │   │   │   │   ├── EntryCommentCreateApiTest.php
│   │   │   │   │   │   ├── EntryCommentDeleteApiTest.php
│   │   │   │   │   │   ├── EntryCommentReportApiTest.php
│   │   │   │   │   │   ├── EntryCommentRetrieveApiTest.php
│   │   │   │   │   │   ├── EntryCommentUpdateApiTest.php
│   │   │   │   │   │   ├── EntryCommentVoteApiTest.php
│   │   │   │   │   │   ├── EntryCommentsActivityApiTest.php
│   │   │   │   │   │   ├── Moderate/
│   │   │   │   │   │   │   ├── EntryCommentSetAdultApiTest.php
│   │   │   │   │   │   │   ├── EntryCommentSetLanguageApiTest.php
│   │   │   │   │   │   │   └── EntryCommentTrashApiTest.php
│   │   │   │   │   │   └── UserEntryCommentRetrieveApiTest.php
│   │   │   │   │   ├── DomainEntryRetrieveApiTest.php
│   │   │   │   │   ├── EntriesActivityApiTest.php
│   │   │   │   │   ├── EntryCreateApiNewTest.php
│   │   │   │   │   ├── EntryCreateApiTest.php
│   │   │   │   │   ├── EntryDeleteApiTest.php
│   │   │   │   │   ├── EntryFavouriteApiTest.php
│   │   │   │   │   ├── EntryReportApiTest.php
│   │   │   │   │   ├── EntryRetrieveApiTest.php
│   │   │   │   │   ├── EntryUpdateApiTest.php
│   │   │   │   │   ├── EntryVoteApiTest.php
│   │   │   │   │   ├── MagazineEntryRetrieveApiTest.php
│   │   │   │   │   ├── Moderate/
│   │   │   │   │   │   ├── EntryLockApiTest.php
│   │   │   │   │   │   ├── EntryPinApiTest.php
│   │   │   │   │   │   ├── EntrySetAdultApiTest.php
│   │   │   │   │   │   ├── EntrySetLanguageApiTest.php
│   │   │   │   │   │   └── EntryTrashApiTest.php
│   │   │   │   │   └── UserEntryRetrieveApiTest.php
│   │   │   │   ├── Instance/
│   │   │   │   │   ├── Admin/
│   │   │   │   │   │   ├── InstanceFederationUpdateApiTest.php
│   │   │   │   │   │   ├── InstancePagesUpdateApiTest.php
│   │   │   │   │   │   ├── InstanceSettingsRetrieveApiTest.php
│   │   │   │   │   │   └── InstanceSettingsUpdateApiTest.php
│   │   │   │   │   ├── InstanceDetailsApiTest.php
│   │   │   │   │   ├── InstanceFederationApiTest.php
│   │   │   │   │   ├── InstanceModlogApiTest.php
│   │   │   │   │   └── InstanceRetrieveInfoApiTest.php
│   │   │   │   ├── Magazine/
│   │   │   │   │   ├── Admin/
│   │   │   │   │   │   ├── MagazineBadgesApiTest.php
│   │   │   │   │   │   ├── MagazineCreateApiTest.php
│   │   │   │   │   │   ├── MagazineDeleteApiTest.php
│   │   │   │   │   │   ├── MagazineDeleteIconApiTest.php
│   │   │   │   │   │   ├── MagazineModeratorsApiTest.php
│   │   │   │   │   │   ├── MagazinePurgeApiTest.php
│   │   │   │   │   │   ├── MagazineRetrieveStatsApiTest.php
│   │   │   │   │   │   ├── MagazineTagsApiTest.php
│   │   │   │   │   │   ├── MagazineUpdateApiTest.php
│   │   │   │   │   │   └── MagazineUpdateThemeApiTest.php
│   │   │   │   │   ├── MagazineBlockApiTest.php
│   │   │   │   │   ├── MagazineModlogApiTest.php
│   │   │   │   │   ├── MagazineRetrieveApiTest.php
│   │   │   │   │   ├── MagazineRetrieveThemeApiTest.php
│   │   │   │   │   ├── MagazineSubscribeApiTest.php
│   │   │   │   │   └── Moderate/
│   │   │   │   │       ├── MagazineActionReportsApiTest.php
│   │   │   │   │       ├── MagazineBanApiTest.php
│   │   │   │   │       ├── MagazineModOwnerRequestApiTest.php
│   │   │   │   │       ├── MagazineRetrieveBansApiTest.php
│   │   │   │   │       ├── MagazineRetrieveReportsApiTest.php
│   │   │   │   │       └── MagazineRetrieveTrashApiTest.php
│   │   │   │   ├── Message/
│   │   │   │   │   ├── MessageReadApiTest.php
│   │   │   │   │   ├── MessageRetrieveApiTest.php
│   │   │   │   │   ├── MessageThreadCreateApiTest.php
│   │   │   │   │   └── MessageThreadReplyApiTest.php
│   │   │   │   ├── Notification/
│   │   │   │   │   ├── AdminNotificationRetrieveApiTest.php
│   │   │   │   │   ├── NotificationDeleteApiTest.php
│   │   │   │   │   ├── NotificationReadApiTest.php
│   │   │   │   │   ├── NotificationRetrieveApiTest.php
│   │   │   │   │   └── NotificationUpdateApiTest.php
│   │   │   │   ├── OAuth2/
│   │   │   │   │   └── OAuth2ClientApiTest.php
│   │   │   │   ├── Post/
│   │   │   │   │   ├── Admin/
│   │   │   │   │   │   └── PostPurgeApiTest.php
│   │   │   │   │   ├── Comment/
│   │   │   │   │   │   ├── Admin/
│   │   │   │   │   │   │   └── PostCommentPurgeApiTest.php
│   │   │   │   │   │   ├── Moderate/
│   │   │   │   │   │   │   ├── PostCommentSetAdultApiTest.php
│   │   │   │   │   │   │   ├── PostCommentSetLanguageApiTest.php
│   │   │   │   │   │   │   └── PostCommentTrashApiTest.php
│   │   │   │   │   │   ├── PostCommentCreateApiTest.php
│   │   │   │   │   │   ├── PostCommentDeleteApiTest.php
│   │   │   │   │   │   ├── PostCommentReportApiTest.php
│   │   │   │   │   │   ├── PostCommentRetrieveApiTest.php
│   │   │   │   │   │   ├── PostCommentUpdateApiTest.php
│   │   │   │   │   │   ├── PostCommentVoteApiTest.php
│   │   │   │   │   │   ├── PostCommentsActivityApiTest.php
│   │   │   │   │   │   └── UserPostCommentRetrieveApiTest.php
│   │   │   │   │   ├── MagazinePostRetrieveApiTest.php
│   │   │   │   │   ├── Moderate/
│   │   │   │   │   │   ├── PostLockApiTest.php
│   │   │   │   │   │   ├── PostPinApiTest.php
│   │   │   │   │   │   ├── PostSetAdultApiTest.php
│   │   │   │   │   │   ├── PostSetLanguageApiTest.php
│   │   │   │   │   │   └── PostTrashApiTest.php
│   │   │   │   │   ├── PostCreateApiTest.php
│   │   │   │   │   ├── PostDeleteApiTest.php
│   │   │   │   │   ├── PostFavouriteApiTest.php
│   │   │   │   │   ├── PostReportApiTest.php
│   │   │   │   │   ├── PostRetrieveApiTest.php
│   │   │   │   │   ├── PostUpdateApiTest.php
│   │   │   │   │   ├── PostVoteApiTest.php
│   │   │   │   │   ├── PostsActivityApiTest.php
│   │   │   │   │   └── UserPostRetrieveApiTest.php
│   │   │   │   ├── Search/
│   │   │   │   │   └── SearchApiTest.php
│   │   │   │   └── User/
│   │   │   │       ├── Admin/
│   │   │   │       │   ├── UserBanApiTest.php
│   │   │   │       │   ├── UserDeleteApiTest.php
│   │   │   │       │   ├── UserPurgeApiTest.php
│   │   │   │       │   ├── UserRetrieveBannedApiTest.php
│   │   │   │       │   └── UserVerifyApiTest.php
│   │   │   │       ├── UserBlockApiTest.php
│   │   │   │       ├── UserContentApiTest.php
│   │   │   │       ├── UserFilterListApiTest.php
│   │   │   │       ├── UserFollowApiTest.php
│   │   │   │       ├── UserModeratesApiTest.php
│   │   │   │       ├── UserRetrieveApiTest.php
│   │   │   │       ├── UserRetrieveOAuthConsentsApiTest.php
│   │   │   │       ├── UserUpdateApiTest.php
│   │   │   │       ├── UserUpdateImagesApiTest.php
│   │   │   │       └── UserUpdateOAuthConsentsApiTest.php
│   │   │   ├── Domain/
│   │   │   │   ├── DomainBlockControllerTest.php
│   │   │   │   ├── DomainCommentFrontControllerTest.php
│   │   │   │   ├── DomainFrontControllerTest.php
│   │   │   │   └── DomainSubControllerTest.php
│   │   │   ├── Entry/
│   │   │   │   ├── Comment/
│   │   │   │   │   ├── EntryCommentBoostControllerTest.php
│   │   │   │   │   ├── EntryCommentChangeLangControllerTest.php
│   │   │   │   │   ├── EntryCommentCreateControllerTest.php
│   │   │   │   │   ├── EntryCommentDeleteControllerTest.php
│   │   │   │   │   ├── EntryCommentEditControllerTest.php
│   │   │   │   │   ├── EntryCommentFrontControllerTest.php
│   │   │   │   │   └── EntryCommentModerateControllerTest.php
│   │   │   │   ├── EntryBoostControllerTest.php
│   │   │   │   ├── EntryChangeAdultControllerTest.php
│   │   │   │   ├── EntryChangeLangControllerTest.php
│   │   │   │   ├── EntryChangeMagazineControllerTest.php
│   │   │   │   ├── EntryCreateControllerTest.php
│   │   │   │   ├── EntryDeleteControllerTest.php
│   │   │   │   ├── EntryEditControllerTest.php
│   │   │   │   ├── EntryFrontControllerTest.php
│   │   │   │   ├── EntryLockControllerTest.php
│   │   │   │   ├── EntryModerateControllerTest.php
│   │   │   │   ├── EntryPinControllerTest.php
│   │   │   │   ├── EntrySingleControllerTest.php
│   │   │   │   └── EntryVotersControllerTest.php
│   │   │   ├── Magazine/
│   │   │   │   ├── MagazineBlockControllerTest.php
│   │   │   │   ├── MagazineCreateControllerTest.php
│   │   │   │   ├── MagazineListControllerTest.php
│   │   │   │   ├── MagazinePeopleControllerTest.php
│   │   │   │   ├── MagazineSubControllerTest.php
│   │   │   │   └── Panel/
│   │   │   │       ├── MagazineAppearanceControllerTest.php
│   │   │   │       ├── MagazineBadgeControllerTest.php
│   │   │   │       ├── MagazineBanControllerTest.php
│   │   │   │       ├── MagazineEditControllerTest.php
│   │   │   │       ├── MagazineModeratorControllerTest.php
│   │   │   │       ├── MagazineReportControllerTest.php
│   │   │   │       └── MagazineTrashControllerTest.php
│   │   │   ├── Moderator/
│   │   │   │   └── ModeratorSignupRequestsControllerTest.php
│   │   │   ├── People/
│   │   │   │   └── FrontControllerTest.php
│   │   │   ├── Post/
│   │   │   │   ├── Comment/
│   │   │   │   │   ├── PostCommentBoostControllerTest.php
│   │   │   │   │   ├── PostCommentChangeLangControllerTest.php
│   │   │   │   │   ├── PostCommentCreateControllerTest.php
│   │   │   │   │   ├── PostCommentDeleteControllerTest.php
│   │   │   │   │   ├── PostCommentEditControllerTest.php
│   │   │   │   │   └── PostCommentModerateControllerTest.php
│   │   │   │   ├── PostBoostControllerTest.php
│   │   │   │   ├── PostChangeAdultControllerTest.php
│   │   │   │   ├── PostChangeLangControllerTest.php
│   │   │   │   ├── PostChangeMagazineControllerTest.php
│   │   │   │   ├── PostCreateControllerTest.php
│   │   │   │   ├── PostDeleteControllerTest.php
│   │   │   │   ├── PostEditControllerTest.php
│   │   │   │   ├── PostFrontControllerTest.php
│   │   │   │   ├── PostLockControllerTest.php
│   │   │   │   ├── PostModerateControllerTest.php
│   │   │   │   ├── PostPinControllerTest.php
│   │   │   │   ├── PostSingleControllerTest.php
│   │   │   │   └── PostVotersControllerTest.php
│   │   │   ├── PrivacyPolicyControllerTest.php
│   │   │   ├── ReportControllerControllerTest.php
│   │   │   ├── Security/
│   │   │   │   ├── LoginControllerTest.php
│   │   │   │   ├── OAuth2ConsentControllerTest.php
│   │   │   │   ├── OAuth2TokenControllerTest.php
│   │   │   │   └── RegisterControllerTest.php
│   │   │   ├── TermsControllerTest.php
│   │   │   ├── User/
│   │   │   │   ├── Admin/
│   │   │   │   │   └── UserDeleteControllerTest.php
│   │   │   │   ├── Profile/
│   │   │   │   │   ├── UserBlockControllerTest.php
│   │   │   │   │   ├── UserEditControllerTest.php
│   │   │   │   │   ├── UserNotificationControllerTest.php
│   │   │   │   │   └── UserSubControllerTest.php
│   │   │   │   ├── UserBlockControllerTest.php
│   │   │   │   ├── UserFollowControllerTest.php
│   │   │   │   └── UserFrontControllerTest.php
│   │   │   ├── VoteControllerTest.php
│   │   │   └── WebfingerControllerTest.php
│   │   └── Misc/
│   │       └── Entry/
│   │           └── CrosspostDetectionTest.php
│   ├── OAuth2FlowTrait.php
│   ├── Service/
│   │   ├── TestingApHttpClient.php
│   │   └── TestingImageManager.php
│   ├── Unit/
│   │   ├── ActivityPub/
│   │   │   ├── ActorHandleTest.php
│   │   │   ├── CollectionExtractionTest.php
│   │   │   ├── Outbox/
│   │   │   │   ├── AddHandlerTest.php
│   │   │   │   ├── AnnounceTest.php
│   │   │   │   ├── BlockTest.php
│   │   │   │   ├── CreateTest.php
│   │   │   │   ├── DeleteTest.php
│   │   │   │   ├── FlagTest.php
│   │   │   │   ├── FollowTest.php
│   │   │   │   ├── JsonSnapshots/
│   │   │   │   │   ├── AddHandlerTest__testAddModerator__1.json
│   │   │   │   │   ├── AddHandlerTest__testAddPinnedPost__1.json
│   │   │   │   │   ├── AddHandlerTest__testRemoveModerator__1.json
│   │   │   │   │   ├── AddHandlerTest__testRemovePinnedPost__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceAddModerator__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceAddPinnedPost__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceBlockUser__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceCreateEntryComment__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceCreateEntry__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceCreateMessage__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceCreateNestedEntryComment__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceCreateNestedPostComment__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceCreatePostComment__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceCreatePost__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceDeleteEntryByModerator__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceDeleteEntryCommentByModerator__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceDeleteEntryComment__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceDeleteEntry__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceDeletePostByModerator__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceDeletePostCommentByModerator__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceDeletePostComment__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceDeletePost__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceDeleteUser__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceLikeEntryComment__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceLikeEntry__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceLikeNestedEntryComment__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceLikeNestedPostComment__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceLikePostComment__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceLikePost__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceRemoveModerator__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceRemovePinnedPost__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceUndoBlockUser__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceUndoLikeEntryComment__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceUndoLikeEntry__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceUndoLikeNestedEntryComment__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceUndoLikeNestedPostComment__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceUndoLikePostComment__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceUndoLikePost__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceUpdateEntryComment__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceUpdateEntry__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceUpdateMagazine__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceUpdatePostComment__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceUpdatePost__1.json
│   │   │   │   │   ├── AnnounceTest__testAnnounceUpdateUser__1.json
│   │   │   │   │   ├── AnnounceTest__testMagazineBoostEntryComment__1.json
│   │   │   │   │   ├── AnnounceTest__testMagazineBoostEntry__1.json
│   │   │   │   │   ├── AnnounceTest__testMagazineBoostNestedEntryComment__1.json
│   │   │   │   │   ├── AnnounceTest__testMagazineBoostNestedPostComment__1.json
│   │   │   │   │   ├── AnnounceTest__testMagazineBoostPostComment__1.json
│   │   │   │   │   ├── AnnounceTest__testMagazineBoostPost__1.json
│   │   │   │   │   ├── AnnounceTest__testUserBoostEntryComment__1.json
│   │   │   │   │   ├── AnnounceTest__testUserBoostEntry__1.json
│   │   │   │   │   ├── AnnounceTest__testUserBoostNestedEntryComment__1.json
│   │   │   │   │   ├── AnnounceTest__testUserBoostNestedPostComment__1.json
│   │   │   │   │   ├── AnnounceTest__testUserBoostPostComment__1.json
│   │   │   │   │   ├── AnnounceTest__testUserBoostPost__1.json
│   │   │   │   │   ├── BlockTest__testBlockUser__1.json
│   │   │   │   │   ├── CreateTest__testCreateEntryComment__1.json
│   │   │   │   │   ├── CreateTest__testCreateEntryWithUrlAndImage__1.json
│   │   │   │   │   ├── CreateTest__testCreateEntry__1.json
│   │   │   │   │   ├── CreateTest__testCreateMessage__1.json
│   │   │   │   │   ├── CreateTest__testCreateNestedEntryComment__1.json
│   │   │   │   │   ├── CreateTest__testCreateNestedPostComment__1.json
│   │   │   │   │   ├── CreateTest__testCreatePostComment__1.json
│   │   │   │   │   ├── CreateTest__testCreatePost__1.json
│   │   │   │   │   ├── DeleteTest__testDeleteEntryByModerator__1.json
│   │   │   │   │   ├── DeleteTest__testDeleteEntryCommentByModerator__1.json
│   │   │   │   │   ├── DeleteTest__testDeleteEntryComment__1.json
│   │   │   │   │   ├── DeleteTest__testDeleteEntry__1.json
│   │   │   │   │   ├── DeleteTest__testDeletePostByModerator__1.json
│   │   │   │   │   ├── DeleteTest__testDeletePostCommentByModerator__1.json
│   │   │   │   │   ├── DeleteTest__testDeletePostComment__1.json
│   │   │   │   │   ├── DeleteTest__testDeletePost__1.json
│   │   │   │   │   ├── DeleteTest__testDeleteUser__1.json
│   │   │   │   │   ├── FlagTest__testFlagEntryComment__1.json
│   │   │   │   │   ├── FlagTest__testFlagEntry__1.json
│   │   │   │   │   ├── FlagTest__testFlagNestedEntryComment__1.json
│   │   │   │   │   ├── FlagTest__testFlagNestedPostComment__1.json
│   │   │   │   │   ├── FlagTest__testFlagPostComment__1.json
│   │   │   │   │   ├── FlagTest__testFlagPost__1.json
│   │   │   │   │   ├── FollowTest__testAcceptFollowMagazine__1.json
│   │   │   │   │   ├── FollowTest__testAcceptFollowUser__1.json
│   │   │   │   │   ├── FollowTest__testFollowMagazine__1.json
│   │   │   │   │   ├── FollowTest__testFollowUser__1.json
│   │   │   │   │   ├── FollowTest__testRejectFollowMagazine__1.json
│   │   │   │   │   ├── FollowTest__testRejectFollowUser__1.json
│   │   │   │   │   ├── LikeTest__testLikeEntryComment__1.json
│   │   │   │   │   ├── LikeTest__testLikeEntry__1.json
│   │   │   │   │   ├── LikeTest__testLikeNestedEntryComment__1.json
│   │   │   │   │   ├── LikeTest__testLikeNestedPostComment__1.json
│   │   │   │   │   ├── LikeTest__testLikePostComment__1.json
│   │   │   │   │   ├── LikeTest__testLikePost__1.json
│   │   │   │   │   ├── LockTest__testLockEntryByAuthor__1.json
│   │   │   │   │   ├── LockTest__testLockEntryByModerator__1.json
│   │   │   │   │   ├── LockTest__testLockPostByAuthor__1.json
│   │   │   │   │   ├── LockTest__testLockPostByModerator__1.json
│   │   │   │   │   ├── UndoTest__testUndoBlockUser__1.json
│   │   │   │   │   ├── UndoTest__testUndoFollowMagazine__1.json
│   │   │   │   │   ├── UndoTest__testUndoFollowUser__1.json
│   │   │   │   │   ├── UndoTest__testUndoLikeEntryComment__1.json
│   │   │   │   │   ├── UndoTest__testUndoLikeEntry__1.json
│   │   │   │   │   ├── UndoTest__testUndoLikeNestedEntryComment__1.json
│   │   │   │   │   ├── UndoTest__testUndoLikeNestedPostComment__1.json
│   │   │   │   │   ├── UndoTest__testUndoLikePostComment__1.json
│   │   │   │   │   ├── UndoTest__testUndoLikePost__1.json
│   │   │   │   │   ├── UpdateTest__testUpdateEntryComment__1.json
│   │   │   │   │   ├── UpdateTest__testUpdateEntry__1.json
│   │   │   │   │   ├── UpdateTest__testUpdateMagazine__1.json
│   │   │   │   │   ├── UpdateTest__testUpdatePostComment__1.json
│   │   │   │   │   ├── UpdateTest__testUpdatePost__1.json
│   │   │   │   │   └── UpdateTest__testUpdateUser__1.json
│   │   │   │   ├── LikeTest.php
│   │   │   │   ├── LockTest.php
│   │   │   │   ├── UndoTest.php
│   │   │   │   └── UpdateTest.php
│   │   │   ├── TagMatchTest.php
│   │   │   └── Traits/
│   │   │       ├── AddRemoveActivityGeneratorTrait.php
│   │   │       ├── AnnounceActivityGeneratorTrait.php
│   │   │       ├── BlockActivityGeneratorTrait.php
│   │   │       ├── CreateActivityGeneratorTrait.php
│   │   │       ├── DeleteActivityGeneratorTrait.php
│   │   │       ├── FlagActivityGeneratorTrait.php
│   │   │       ├── FollowActivityGeneratorTrait.php
│   │   │       ├── LikeActivityGeneratorTrait.php
│   │   │       ├── LockActivityGeneratorTrait.php
│   │   │       ├── UndoActivityGeneratorTrait.php
│   │   │       └── UpdateActivityGeneratorTrait.php
│   │   ├── CursorPaginationTest.php
│   │   ├── Service/
│   │   │   ├── ActivityPub/
│   │   │   │   └── SignatureValidatorTest.php
│   │   │   ├── MentionManagerTest.php
│   │   │   ├── MonitoringParameterEncodingTest.php
│   │   │   ├── SettingsManagerTest.php
│   │   │   └── TagExtractorTest.php
│   │   ├── TwigRuntime/
│   │   │   └── FormattingExtensionRuntimeTest.php
│   │   └── Utils/
│   │       ├── ArrayUtilTest.php
│   │       ├── GeneralUtilTest.php
│   │       ├── MarkdownTest.php
│   │       └── SluggerTest.php
│   ├── ValidationTrait.php
│   ├── WebTestCase.php
│   └── bootstrap.php
├── tools/
│   └── composer.json
├── translations/
│   ├── .gitignore
│   ├── messages.an.yaml
│   ├── messages.ast.yaml
│   ├── messages.bg.yaml
│   ├── messages.ca.yaml
│   ├── messages.ca@valencia.yaml
│   ├── messages.da.yaml
│   ├── messages.de.yaml
│   ├── messages.el.yaml
│   ├── messages.en.yaml
│   ├── messages.eo.yaml
│   ├── messages.es.yaml
│   ├── messages.et.yaml
│   ├── messages.eu.yaml
│   ├── messages.fi.yaml
│   ├── messages.fil.yaml
│   ├── messages.fr.yaml
│   ├── messages.gl.yaml
│   ├── messages.gsw.yaml
│   ├── messages.it.yaml
│   ├── messages.ja.yaml
│   ├── messages.nb_NO.yaml
│   ├── messages.nl.yaml
│   ├── messages.pl.yaml
│   ├── messages.pt.yaml
│   ├── messages.pt_BR.yaml
│   ├── messages.ru.yaml
│   ├── messages.sv.yaml
│   ├── messages.ta.yaml
│   ├── messages.tr.yaml
│   ├── messages.uk.yaml
│   ├── messages.zh_Hans.yaml
│   ├── messages.zh_TW.yaml
│   └── security.en.yaml
└── webpack.config.js
Download .txt
Showing preview only (886K chars total). Download the full file or copy to clipboard to get everything.
SYMBOL INDEX (8747 symbols across 1793 files)

FILE: assets/controllers/autogrow_controller.js
  method connect (line 6) | connect() {

FILE: assets/controllers/clipboard_controller.js
  method copy (line 5) | copy(event) {

FILE: assets/controllers/collapsable_controller.js
  constant MAX_COLLAPSED_HEIGHT_REM (line 5) | const MAX_COLLAPSED_HEIGHT_REM = 25;
  constant MAX_FULL_HEIGHT_REM (line 6) | const MAX_FULL_HEIGHT_REM = 28;
  method connect (line 21) | connect() {
  method setup (line 35) | setup() {
  method checkSize (line 52) | checkSize() {
  method setupButton (line 57) | setupButton() {
  method setExpanded (line 72) | setExpanded(expanded, skipEffects) {

FILE: assets/controllers/comment_collapse_controller.js
  constant COMMENT_ELEMENT_TAG (line 4) | const COMMENT_ELEMENT_TAG = 'BLOCKQUOTE';
  constant COLLAPSIBLE_CLASS (line 5) | const COLLAPSIBLE_CLASS = 'collapsible';
  constant COLLAPSED_CLASS (line 6) | const COLLAPSED_CLASS = 'collapsed';
  constant HIDDEN_CLASS (line 7) | const HIDDEN_CLASS = 'hidden';
  method connect (line 17) | connect() {
  method toggleCollapse (line 31) | toggleCollapse(event) {
  method toggleHideSibling (line 56) | toggleHideSibling(element, collapserDepth) {
  method toggleCollapseSelf (line 65) | toggleCollapseSelf() {
  method updateCounter (line 69) | updateCounter(count) {
  method hiddenByValueChanged (line 85) | hiddenByValueChanged() {

FILE: assets/controllers/confirmation_controller.js
  method ask (line 5) | ask(event) {

FILE: assets/controllers/entry_link_create_controller.js
  method connect (line 15) | connect() {
  method fetchLink (line 28) | fetchLink(event) {
  method loadingValueChanged (line 52) | loadingValueChanged(val) {
  method fetchTitleAndDescription (line 63) | async fetchTitleAndDescription(event) {

FILE: assets/controllers/form_collection_controller.js
  method addCollectionElement (line 12) | addCollectionElement() {

FILE: assets/controllers/html_refresh_controller.js
  method linkCallback (line 10) | async linkCallback(event) {

FILE: assets/controllers/image_upload_controller.js
  method connect (line 5) | connect() {
  method clearPreview (line 25) | clearPreview() {

FILE: assets/controllers/infinite_scroll_controller.js
  method connect (line 12) | connect() {
  method appear (line 17) | async appear() {
  method handleEntries (line 53) | async handleEntries(url) {
  method loadingValueChanged (line 95) | loadingValueChanged(val) {
  method showPagination (line 99) | showPagination() {

FILE: assets/controllers/input_length_controller.js
  method connect (line 12) | connect() {
  method updateDisplay (line 29) | updateDisplay() {

FILE: assets/controllers/lightbox_controller.js
  method connect (line 6) | connect() {

FILE: assets/controllers/markdown_toolbar_controller.js
  method addSpoiler (line 11) | addSpoiler(event) {
  method toggleEmojiPicker (line 42) | toggleEmojiPicker(event) {

FILE: assets/controllers/mbin_controller.js
  method connect (line 11) | connect() {
  method handleDropdowns (line 17) | handleDropdowns() {
  method handleOptionsBarScroll (line 25) | handleOptionsBarScroll() {
  method handleNavToggleClick (line 57) | handleNavToggleClick() {
  method changeLang (line 62) | changeLang(event) {

FILE: assets/controllers/mentions_controller.js
  method userPopup (line 24) | async userPopup(event) {
  method userPopupOut (line 37) | async userPopupOut() {
  method triggerUserPopup (line 44) | async triggerUserPopup(event) {
  method navigateUser (line 73) | async navigateUser(event) {
  method navigateMagazine (line 79) | async navigateMagazine(event) {

FILE: assets/controllers/notifications_controller.js
  method connect (line 15) | connect() {
  method disconnect (line 26) | disconnect() {
  method connectEs (line 30) | connectEs(endpoint, topics) {
  method closeEs (line 70) | closeEs() {
  method getTopics (line 76) | getTopics() {
  method fetchAndSetNewNotificationAndMessageCount (line 109) | fetchAndSetNewNotificationAndMessageCount() {
  method setNotificationCount (line 126) | setNotificationCount(count) {
  method setMessageCount (line 137) | setMessageCount(count) {
  method setCountInSubBadgeElement (line 149) | setCountInSubBadgeElement(element, count) {

FILE: assets/controllers/options_controller.js
  method connect (line 10) | connect() {
  method toggleTab (line 25) | toggleTab(e) {
  method activeTabValueChanged (line 39) | activeTabValueChanged(selectedTab) {
  method closeMobileSidebar (line 55) | closeMobileSidebar() {
  method appearanceReloadRequired (line 59) | appearanceReloadRequired(event) {

FILE: assets/controllers/password_preview_controller.js
  method connect (line 12) | connect() {
  method setupPasswordPreviewButton (line 21) | setupPasswordPreviewButton() {
  method onPreviewButtonClick (line 42) | onPreviewButtonClick() {

FILE: assets/controllers/post_controller.js
  method expandComments (line 13) | async expandComments(event) {
  method collapseComments (line 62) | collapseComments(event) {
  method expandVoters (line 74) | async expandVoters(event) {
  method loadingValueChanged (line 93) | loadingValueChanged(val) {

FILE: assets/controllers/preview_controller.js
  method connect (line 18) | connect() {
  method createContainerTarget (line 30) | createContainerTarget(extraClasses) {
  method retry (line 40) | async retry(event) {
  method fetchEmbed (line 49) | async fetchEmbed(url) {
  method show (line 64) | async show(event) {
  method loadScripts (line 104) | loadScripts(response) {
  method loadingValueChanged (line 126) | loadingValueChanged(val) {

FILE: assets/controllers/push_controller.js
  method connect (line 8) | connect() {
  method updateButtonVisibility (line 33) | updateButtonVisibility(pushSubscription) {
  method retry (line 48) | async retry() {
  method show (line 52) | async show() {
  method askPermission (line 56) | askPermission() {
  method registerPush (line 73) | registerPush() {
  method unregisterPush (line 111) | unregisterPush() {
  method testPush (line 137) | testPush() {
  method getDeviceKey (line 151) | getDeviceKey() {

FILE: assets/controllers/rich_textarea_controller.js
  method connect (line 6) | connect() {
  method handleInput (line 25) | handleInput (event) {
  method toggleFormattingEnclosure (line 75) | toggleFormattingEnclosure(encl, maxLength = 1) {
  method delayedClearAutocomplete (line 109) | delayedClearAutocomplete() {
  method clearAutocomplete (line 113) | clearAutocomplete() {
  method getAutocompleteSearchString (line 123) | getAutocompleteSearchString(key) {
  method getAutocompleteSearchStringStartAndEnd (line 134) | getAutocompleteSearchStringStartAndEnd() {
  method fetchAutocompleteResults (line 161) | fetchAutocompleteResults(searchText) {
  method replaceAutocompleteSearchString (line 189) | replaceAutocompleteSearchString(replaceText) {
  method fillSuggestions (line 200) | fillSuggestions (html) {
  method markSelectedSuggestion (line 219) | markSelectedSuggestion() {
  method getSelectedSuggestionReplacement (line 231) | getSelectedSuggestionReplacement() {
  method getSuggestionElements (line 243) | getSuggestionElements() {

FILE: assets/controllers/scroll_top_controller.js
  method connect (line 4) | connect() {
  method scroll (line 11) | scroll() {
  method increaseCounter (line 22) | increaseCounter() {
  method scrollTop (line 28) | scrollTop() {

FILE: assets/controllers/selection_controller.js
  method changeLocation (line 5) | changeLocation(event) {

FILE: assets/controllers/settings_row_enum_controller.js
  method change (line 9) | change({ params: { actionPath, reloadRequired } }) {

FILE: assets/controllers/settings_row_switch_controller.js
  method toggle (line 11) | toggle({ target, params: { truePath, falsePath, reloadRequired } }) {

FILE: assets/controllers/subject_controller.js
  method connect (line 17) | connect() {
  method getForm (line 27) | async getForm(event) {
  method sendForm (line 73) | async sendForm(event) {
  method favourite (line 140) | async favourite(event) {
  method vote (line 164) | async vote(event) {
  method loadingValueChanged (line 188) | loadingValueChanged(val) {
  method showModPanel (line 204) | async showModPanel(event) {
  method notification (line 235) | notification(data) {
  method refresh (line 267) | async refresh(data) {
  method updateVotes (line 289) | updateVotes(data) {
  method updateFavourites (line 303) | updateFavourites(data) {
  method updateCommentCounter (line 309) | updateCommentCounter(data) {
  method removeImage (line 319) | async removeImage(event) {
  method appear (line 339) | appear() {
  method wireMoreFocusClassAdjustment (line 353) | wireMoreFocusClassAdjustment() {
  method wireTouchEvent (line 393) | wireTouchEvent() {
  method wireTouchEventRegular (line 401) | wireTouchEventRegular() {
  method wireTouchEventCombined (line 422) | wireTouchEventCombined() {
  method filterClickEvent (line 448) | filterClickEvent(e) {

FILE: assets/controllers/subject_list_controller.js
  method addComment (line 8) | addComment(data) {
  method addMainSubject (line 16) | async addMainSubject(data) {
  method addCommentOverview (line 73) | async addCommentOverview(data) {
  method increaseCounter (line 112) | increaseCounter() {

FILE: assets/controllers/subs_controller.js
  method send (line 10) | async send(event) {

FILE: assets/controllers/subs_panel_controller.js
  constant KBIN_SUBSCRIPTIONS_IN_SEPARATE_SIDEBAR (line 4) | const KBIN_SUBSCRIPTIONS_IN_SEPARATE_SIDEBAR = 'kbin_subscriptions_in_se...
  constant KBIN_SUBSCRIPTIONS_SIDEBARS_SAME_SIDE (line 5) | const KBIN_SUBSCRIPTIONS_SIDEBARS_SAME_SIDE = 'kbin_subscriptions_sideba...
  method generateSettingsRoute (line 13) | generateSettingsRoute(key, value) {
  method reattach (line 17) | async reattach() {
  method popLeft (line 24) | async popLeft() {
  method popRight (line 37) | async popRight() {

FILE: assets/controllers/thumb_controller.js
  method adultImageHover (line 10) | async adultImageHover(event) {
  method adultImageHoverOut (line 22) | async adultImageHoverOut(event) {

FILE: assets/controllers/timeago_controller.js
  method connect (line 25) | connect() {

FILE: assets/utils/debounce.js
  function debounce (line 1) | function debounce(delay, handler) {

FILE: assets/utils/event-source.js
  function subscribe (line 1) | function subscribe(endpoint, topics, cb) {

FILE: assets/utils/http.js
  function fetch (line 6) | async function fetch(url = '', options = {}) {
  function ok (line 23) | async function ok(response) {
  function ThrowResponseIfNotOk (line 39) | function ThrowResponseIfNotOk(response) {

FILE: assets/utils/mbin.js
  function getIntIdFromElement (line 1) | function getIntIdFromElement(element) {
  function getIdPrefixFromNotification (line 5) | function getIdPrefixFromNotification(data) {
  function getTypeFromNotification (line 18) | function getTypeFromNotification(data) {
  function getLevel (line 35) | function getLevel(element) {
  function getDepth (line 40) | function getDepth(element) {

FILE: assets/utils/popover.js
  function getPositionTarget (line 84) | function getPositionTarget(popover) {
  function initPopover (line 94) | function initPopover(popover) {
  function initPopoverEvents (line 103) | function initPopoverEvents(popover) {
  function togglePopover (line 137) | function togglePopover(popover, bool, moveFocus) {
  function focusPopover (line 164) | function focusPopover(popover) {
  function positionPopover (line 172) | function positionPopover(popover) {
  function resetPopoverStyle (line 201) | function resetPopoverStyle(popover) {
  function initPopoverPosition (line 210) | function initPopoverPosition(popover) {
  function checkPopoverClick (line 216) | function checkPopoverClick(popover, target) {
  function checkPopoverFocus (line 226) | function checkPopoverFocus(popover) {
  function getFocusableElements (line 235) | function getFocusableElements(popover) {
  function getFirstVisible (line 242) | function getFirstVisible(popover, elements) {
  function getLastVisible (line 252) | function getLastVisible(popover, elements) {
  function trapFocus (line 262) | function trapFocus(popover, event) {
  function isVisible (line 275) | function isVisible(element) {

FILE: assets/utils/routing.js
  function router (line 5) | function router() {

FILE: migrations/Version20210527210529.php
  class Version20210527210529 (line 10) | final class Version20210527210529 extends AbstractMigration
    method getDescription (line 12) | public function getDescription(): string
    method up (line 17) | public function up(Schema $schema): void
    method down (line 261) | public function down(Schema $schema): void

FILE: migrations/Version20210830133327.php
  class Version20210830133327 (line 10) | final class Version20210830133327 extends AbstractMigration
    method getDescription (line 12) | public function getDescription(): string
    method up (line 17) | public function up(Schema $schema): void
    method down (line 22) | public function down(Schema $schema): void

FILE: migrations/Version20211016124104.php
  class Version20211016124104 (line 10) | final class Version20211016124104 extends AbstractMigration
    method getDescription (line 12) | public function getDescription(): string
    method up (line 17) | public function up(Schema $schema): void
    method down (line 36) | public function down(Schema $schema): void

FILE: migrations/Version20211107140830.php
  class Version20211107140830 (line 10) | final class Version20211107140830 extends AbstractMigration
    method getDescription (line 12) | public function getDescription(): string
    method up (line 17) | public function up(Schema $schema): void
    method down (line 22) | public function down(Schema $schema): void

FILE: migrations/Version20211113102713.php
  class Version20211113102713 (line 10) | final class Version20211113102713 extends AbstractMigration
    method getDescription (line 12) | public function getDescription(): string
    method up (line 17) | public function up(Schema $schema): void
    method down (line 22) | public function down(Schema $schema): void

FILE: migrations/Version20211117170048.php
  class Version20211117170048 (line 13) | final class Version20211117170048 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 33) | public function down(Schema $schema): void

FILE: migrations/Version20211121182824.php
  class Version20211121182824 (line 13) | final class Version20211121182824 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 49) | public function down(Schema $schema): void

FILE: migrations/Version20211205133802.php
  class Version20211205133802 (line 13) | final class Version20211205133802 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 36) | public function down(Schema $schema): void

FILE: migrations/Version20211220092653.php
  class Version20211220092653 (line 13) | final class Version20211220092653 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 37) | public function down(Schema $schema): void

FILE: migrations/Version20211231174542.php
  class Version20211231174542 (line 13) | final class Version20211231174542 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 28) | public function down(Schema $schema): void

FILE: migrations/Version20220116141404.php
  class Version20220116141404 (line 13) | final class Version20220116141404 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 25) | public function down(Schema $schema): void

FILE: migrations/Version20220123173726.php
  class Version20220123173726 (line 13) | final class Version20220123173726 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 27) | public function down(Schema $schema): void

FILE: migrations/Version20220125212007.php
  class Version20220125212007 (line 13) | final class Version20220125212007 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 33) | public function down(Schema $schema): void

FILE: migrations/Version20220131190012.php
  class Version20220131190012 (line 13) | final class Version20220131190012 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 26) | public function down(Schema $schema): void

FILE: migrations/Version20220204202829.php
  class Version20220204202829 (line 13) | final class Version20220204202829 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 41) | public function down(Schema $schema): void

FILE: migrations/Version20220206143129.php
  class Version20220206143129 (line 13) | final class Version20220206143129 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 32) | public function down(Schema $schema): void

FILE: migrations/Version20220208192443.php
  class Version20220208192443 (line 13) | final class Version20220208192443 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 43) | public function down(Schema $schema): void

FILE: migrations/Version20220216211707.php
  class Version20220216211707 (line 13) | final class Version20220216211707 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 25) | public function down(Schema $schema): void

FILE: migrations/Version20220218220935.php
  class Version20220218220935 (line 13) | final class Version20220218220935 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 27) | public function down(Schema $schema): void

FILE: migrations/Version20220306181222.php
  class Version20220306181222 (line 13) | final class Version20220306181222 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 27) | public function down(Schema $schema): void

FILE: migrations/Version20220308201003.php
  class Version20220308201003 (line 13) | final class Version20220308201003 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 26) | public function down(Schema $schema): void

FILE: migrations/Version20220320191810.php
  class Version20220320191810 (line 13) | final class Version20220320191810 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 37) | public function down(Schema $schema): void

FILE: migrations/Version20220404185534.php
  class Version20220404185534 (line 13) | final class Version20220404185534 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 27) | public function down(Schema $schema): void

FILE: migrations/Version20220407171552.php
  class Version20220407171552 (line 13) | final class Version20220407171552 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 27) | public function down(Schema $schema): void

FILE: migrations/Version20220408100230.php
  class Version20220408100230 (line 13) | final class Version20220408100230 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 33) | public function down(Schema $schema): void

FILE: migrations/Version20220411203149.php
  class Version20220411203149 (line 13) | final class Version20220411203149 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 31) | public function down(Schema $schema): void

FILE: migrations/Version20220421082111.php
  class Version20220421082111 (line 13) | final class Version20220421082111 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 26) | public function down(Schema $schema): void

FILE: migrations/Version20220621144628.php
  class Version20220621144628 (line 13) | final class Version20220621144628 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 26) | public function down(Schema $schema): void

FILE: migrations/Version20220705184724.php
  class Version20220705184724 (line 13) | final class Version20220705184724 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 28) | public function down(Schema $schema): void

FILE: migrations/Version20220716120139.php
  class Version20220716120139 (line 13) | final class Version20220716120139 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 35) | public function down(Schema $schema): void

FILE: migrations/Version20220716142146.php
  class Version20220716142146 (line 13) | final class Version20220716142146 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 27) | public function down(Schema $schema): void

FILE: migrations/Version20220717101149.php
  class Version20220717101149 (line 13) | final class Version20220717101149 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 29) | public function down(Schema $schema): void

FILE: migrations/Version20220723095813.php
  class Version20220723095813 (line 13) | final class Version20220723095813 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 31) | public function down(Schema $schema): void

FILE: migrations/Version20220723182602.php
  class Version20220723182602 (line 13) | final class Version20220723182602 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 29) | public function down(Schema $schema): void

FILE: migrations/Version20220801085018.php
  class Version20220801085018 (line 13) | final class Version20220801085018 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 36) | public function down(Schema $schema): void

FILE: migrations/Version20220808150935.php
  class Version20220808150935 (line 13) | final class Version20220808150935 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 29) | public function down(Schema $schema): void

FILE: migrations/Version20220903070858.php
  class Version20220903070858 (line 13) | final class Version20220903070858 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 30) | public function down(Schema $schema): void

FILE: migrations/Version20220911120737.php
  class Version20220911120737 (line 13) | final class Version20220911120737 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 31) | public function down(Schema $schema): void

FILE: migrations/Version20220917102655.php
  class Version20220917102655 (line 13) | final class Version20220917102655 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 33) | public function down(Schema $schema): void

FILE: migrations/Version20220918140533.php
  class Version20220918140533 (line 13) | final class Version20220918140533 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 33) | public function down(Schema $schema): void

FILE: migrations/Version20220924182955.php
  class Version20220924182955 (line 13) | final class Version20220924182955 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 27) | public function down(Schema $schema): void

FILE: migrations/Version20221015120344.php
  class Version20221015120344 (line 13) | final class Version20221015120344 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 27) | public function down(Schema $schema): void

FILE: migrations/Version20221030095047.php
  class Version20221030095047 (line 13) | final class Version20221030095047 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 25) | public function down(Schema $schema): void

FILE: migrations/Version20221108164813.php
  class Version20221108164813 (line 13) | final class Version20221108164813 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 32) | public function down(Schema $schema): void

FILE: migrations/Version20221109161753.php
  class Version20221109161753 (line 13) | final class Version20221109161753 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 26) | public function down(Schema $schema): void

FILE: migrations/Version20221116150037.php
  class Version20221116150037 (line 13) | final class Version20221116150037 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 26) | public function down(Schema $schema): void

FILE: migrations/Version20221121125723.php
  class Version20221121125723 (line 13) | final class Version20221121125723 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 29) | public function down(Schema $schema): void

FILE: migrations/Version20221124162526.php
  class Version20221124162526 (line 13) | final class Version20221124162526 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 39) | public function down(Schema $schema): void

FILE: migrations/Version20221128212959.php
  class Version20221128212959 (line 13) | final class Version20221128212959 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 26) | public function down(Schema $schema): void

FILE: migrations/Version20221202114605.php
  class Version20221202114605 (line 13) | final class Version20221202114605 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 29) | public function down(Schema $schema): void

FILE: migrations/Version20221202134944.php
  class Version20221202134944 (line 13) | final class Version20221202134944 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 29) | public function down(Schema $schema): void

FILE: migrations/Version20221202140020.php
  class Version20221202140020 (line 13) | final class Version20221202140020 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 28) | public function down(Schema $schema): void

FILE: migrations/Version20221214153611.php
  class Version20221214153611 (line 13) | final class Version20221214153611 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 34) | public function down(Schema $schema): void

FILE: migrations/Version20221222124812.php
  class Version20221222124812 (line 13) | final class Version20221222124812 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 26) | public function down(Schema $schema): void

FILE: migrations/Version20221229160511.php
  class Version20221229160511 (line 13) | final class Version20221229160511 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 30) | public function down(Schema $schema): void

FILE: migrations/Version20221229162448.php
  class Version20221229162448 (line 13) | final class Version20221229162448 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 26) | public function down(Schema $schema): void

FILE: migrations/Version20230125123959.php
  class Version20230125123959 (line 13) | final class Version20230125123959 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 30) | public function down(Schema $schema): void

FILE: migrations/Version20230306134010.php
  class Version20230306134010 (line 13) | final class Version20230306134010 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 32) | public function down(Schema $schema): void

FILE: migrations/Version20230314134010.php
  class Version20230314134010 (line 13) | final class Version20230314134010 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 72) | public function down(Schema $schema): void

FILE: migrations/Version20230323160934.php
  class Version20230323160934 (line 13) | final class Version20230323160934 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 29) | public function down(Schema $schema): void

FILE: migrations/Version20230323170745.php
  class Version20230323170745 (line 13) | final class Version20230323170745 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 30) | public function down(Schema $schema): void

FILE: migrations/Version20230325084833.php
  class Version20230325084833 (line 13) | final class Version20230325084833 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 33) | public function down(Schema $schema): void

FILE: migrations/Version20230325101955.php
  class Version20230325101955 (line 13) | final class Version20230325101955 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 26) | public function down(Schema $schema): void

FILE: migrations/Version20230404080956.php
  class Version20230404080956 (line 13) | final class Version20230404080956 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 27) | public function down(Schema $schema): void

FILE: migrations/Version20230411133416.php
  class Version20230411133416 (line 13) | final class Version20230411133416 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 26) | public function down(Schema $schema): void

FILE: migrations/Version20230411143354.php
  class Version20230411143354 (line 13) | final class Version20230411143354 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 26) | public function down(Schema $schema): void

FILE: migrations/Version20230412211534.php
  class Version20230412211534 (line 13) | final class Version20230412211534 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 33) | public function down(Schema $schema): void

FILE: migrations/Version20230425103236.php
  class Version20230425103236 (line 13) | final class Version20230425103236 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 26) | public function down(Schema $schema): void

FILE: migrations/Version20230428130129.php
  class Version20230428130129 (line 13) | final class Version20230428130129 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 29) | public function down(Schema $schema): void

FILE: migrations/Version20230429053840.php
  class Version20230429053840 (line 13) | final class Version20230429053840 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 27) | public function down(Schema $schema): void

FILE: migrations/Version20230429143017.php
  class Version20230429143017 (line 13) | final class Version20230429143017 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 27) | public function down(Schema $schema): void

FILE: migrations/Version20230504124307.php
  class Version20230504124307 (line 13) | final class Version20230504124307 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 26) | public function down(Schema $schema): void

FILE: migrations/Version20230514143119.php
  class Version20230514143119 (line 13) | final class Version20230514143119 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 30) | public function down(Schema $schema): void

FILE: migrations/Version20230521145244.php
  class Version20230521145244 (line 13) | final class Version20230521145244 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 26) | public function down(Schema $schema): void

FILE: migrations/Version20230522135602.php
  class Version20230522135602 (line 13) | final class Version20230522135602 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 38) | public function down(Schema $schema): void

FILE: migrations/Version20230525203803.php
  class Version20230525203803 (line 13) | final class Version20230525203803 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 35) | public function down(Schema $schema): void

FILE: migrations/Version20230615085154.php
  class Version20230615085154 (line 13) | final class Version20230615085154 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 39) | public function down(Schema $schema): void

FILE: migrations/Version20230615091124.php
  class Version20230615091124 (line 13) | final class Version20230615091124 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 33) | public function down(Schema $schema): void

FILE: migrations/Version20230615203020.php
  class Version20230615203020 (line 13) | final class Version20230615203020 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 35) | public function down(Schema $schema): void

FILE: migrations/Version20230701125418.php
  class Version20230701125418 (line 13) | final class Version20230701125418 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 25) | public function down(Schema $schema): void

FILE: migrations/Version20230712132025.php
  class Version20230712132025 (line 13) | final class Version20230712132025 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 25) | public function down(Schema $schema): void

FILE: migrations/Version20230715034515.php
  class Version20230715034515 (line 13) | final class Version20230715034515 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 25) | public function down(Schema $schema): void

FILE: migrations/Version20230718160422.php
  class Version20230718160422 (line 13) | final class Version20230718160422 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 26) | public function down(Schema $schema): void

FILE: migrations/Version20230719060447.php
  class Version20230710060447 (line 13) | final class Version20230710060447 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 69) | public function down(Schema $schema): void

FILE: migrations/Version20230729063543.php
  class Version20230729063543 (line 10) | final class Version20230729063543 extends AbstractMigration
    method up (line 12) | public function up(Schema $schema): void
    method down (line 17) | public function down(Schema $schema): void

FILE: migrations/Version20230812151754.php
  class Version20230812151754 (line 13) | final class Version20230812151754 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 26) | public function down(Schema $schema): void

FILE: migrations/Version20230820234418.php
  class Version20230820234418 (line 13) | final class Version20230820234418 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 26) | public function down(Schema $schema): void

FILE: migrations/Version20230902082312.php
  class Version20230902082312 (line 13) | final class Version20230902082312 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 26) | public function down(Schema $schema): void

FILE: migrations/Version20230906095436.php
  class Version20230906095436 (line 13) | final class Version20230906095436 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 25) | public function down(Schema $schema): void

FILE: migrations/Version20231019023030.php
  class Version20231019023030 (line 10) | final class Version20231019023030 extends AbstractMigration
    method getDescription (line 12) | public function getDescription(): string
    method up (line 17) | public function up(Schema $schema): void
    method down (line 35) | public function down(Schema $schema): void

FILE: migrations/Version20231019190634.php
  class Version20231019190634 (line 10) | final class Version20231019190634 extends AbstractMigration
    method getDescription (line 12) | public function getDescription(): string
    method up (line 17) | public function up(Schema $schema): void
    method down (line 24) | public function down(Schema $schema): void

FILE: migrations/Version20231103004800.php
  class Version20231103004800 (line 10) | class Version20231103004800 extends AbstractMigration
    method getDescription (line 12) | public function getDescription(): string
    method up (line 17) | public function up(Schema $schema): void
    method down (line 23) | public function down(Schema $schema): void

FILE: migrations/Version20231103070928.php
  class Version20231103070928 (line 13) | final class Version20231103070928 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 28) | public function down(Schema $schema): void

FILE: migrations/Version20231107204142.php
  class Version20231107204142 (line 10) | class Version20231107204142 extends AbstractMigration
    method getDescription (line 12) | public function getDescription(): string
    method up (line 17) | public function up(Schema $schema): void
    method down (line 25) | public function down(Schema $schema): void

FILE: migrations/Version20231108084451.php
  class Version20231108084451 (line 10) | final class Version20231108084451 extends AbstractMigration
    method getDescription (line 12) | public function getDescription(): string
    method up (line 17) | public function up(Schema $schema): void
    method down (line 38) | public function down(Schema $schema): void

FILE: migrations/Version20231112133420.php
  class Version20231112133420 (line 10) | final class Version20231112133420 extends AbstractMigration
    method getDescription (line 12) | public function getDescription(): string
    method up (line 17) | public function up(Schema $schema): void
    method down (line 24) | public function down(Schema $schema): void

FILE: migrations/Version20231113165549.php
  class Version20231113165549 (line 13) | final class Version20231113165549 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 26) | public function down(Schema $schema): void

FILE: migrations/Version20231119012320.php
  class Version20231119012320 (line 13) | final class Version20231119012320 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 32) | public function down(Schema $schema): void

FILE: migrations/Version20231120164429.php
  class Version20231120164429 (line 13) | final class Version20231120164429 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 26) | public function down(Schema $schema): void

FILE: migrations/Version20231121010453.php
  class Version20231121010453 (line 13) | final class Version20231121010453 extends AbstractMigration
    method getDescription (line 30) | public function getDescription(): string
    method up (line 35) | public function up(Schema $schema): void
    method down (line 42) | public function down(Schema $schema): void

FILE: migrations/Version20231130203400.php
  class Version20231130203400 (line 10) | class Version20231130203400 extends AbstractMigration
    method up (line 12) | public function up(Schema $schema): void
    method down (line 18) | public function down(Schema $schema): void

FILE: migrations/Version20240113214751.php
  class Version20240113214751 (line 13) | final class Version20240113214751 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 26) | public function down(Schema $schema): void

FILE: migrations/Version20240216110804.php
  class Version20240216110804 (line 13) | final class Version20240216110804 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 119) | public function down(Schema $schema): void

FILE: migrations/Version20240217103834.php
  class Version20240217103834 (line 10) | final class Version20240217103834 extends AbstractMigration
    method getDescription (line 12) | public function getDescription(): string
    method up (line 17) | public function up(Schema $schema): void
    method down (line 22) | public function down(Schema $schema): void

FILE: migrations/Version20240217141231.php
  class Version20240217141231 (line 10) | final class Version20240217141231 extends AbstractMigration
    method up (line 12) | public function up(Schema $schema): void
    method down (line 17) | public function down(Schema $schema): void

FILE: migrations/Version20240313222328.php
  class Version20240313222328 (line 10) | final class Version20240313222328 extends AbstractMigration
    method getDescription (line 12) | public function getDescription(): string
    method up (line 17) | public function up(Schema $schema): void
    method down (line 29) | public function down(Schema $schema): void

FILE: migrations/Version20240315124130.php
  class Version20240315124130 (line 10) | class Version20240315124130 extends AbstractMigration
    method getDescription (line 12) | public function getDescription(): string
    method up (line 17) | public function up(Schema $schema): void
    method down (line 25) | public function down(Schema $schema): void

FILE: migrations/Version20240317163312.php
  class Version20240317163312 (line 10) | final class Version20240317163312 extends AbstractMigration
    method getDescription (line 12) | public function getDescription(): string
    method up (line 17) | public function up(Schema $schema): void
    method down (line 23) | public function down(Schema $schema): void

FILE: migrations/Version20240330101300.php
  class Version20240330101300 (line 10) | final class Version20240330101300 extends AbstractMigration
    method getDescription (line 12) | public function getDescription(): string
    method up (line 17) | public function up(Schema $schema): void
    method down (line 165) | public function down(Schema $schema): void

FILE: migrations/Version20240402190028.php
  class Version20240402190028 (line 10) | final class Version20240402190028 extends AbstractMigration
    method getDescription (line 12) | public function getDescription(): string
    method up (line 17) | public function up(Schema $schema): void
    method down (line 27) | public function down(Schema $schema): void

FILE: migrations/Version20240405131611.php
  class Version20240405131611 (line 13) | final class Version20240405131611 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 29) | public function down(Schema $schema): void

FILE: migrations/Version20240405134821.php
  class Version20240405134821 (line 13) | final class Version20240405134821 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 25) | public function down(Schema $schema): void

FILE: migrations/Version20240409072525.php
  class Version20240409072525 (line 13) | final class Version20240409072525 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 26) | public function down(Schema $schema): void

FILE: migrations/Version20240412010024.php
  class Version20240412010024 (line 13) | final class Version20240412010024 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 29) | public function down(Schema $schema): void

FILE: migrations/Version20240503224350.php
  class Version20240503224350 (line 13) | final class Version20240503224350 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 25) | public function down(Schema $schema): void

FILE: migrations/Version20240515122858.php
  class Version20240515122858 (line 10) | final class Version20240515122858 extends AbstractMigration
    method getDescription (line 12) | public function getDescription(): string
    method up (line 17) | public function up(Schema $schema): void
    method down (line 24) | public function down(Schema $schema): void

FILE: migrations/Version20240528172429.php
  class Version20240528172429 (line 10) | final class Version20240528172429 extends AbstractMigration
    method getDescription (line 12) | public function getDescription(): string
    method up (line 17) | public function up(Schema $schema): void
    method down (line 24) | public function down(Schema $schema): void

FILE: migrations/Version20240529115400.php
  class Version20240529115400 (line 10) | class Version20240529115400 extends AbstractMigration
    method getDescription (line 12) | public function getDescription(): string
    method up (line 17) | public function up(Schema $schema): void
    method down (line 22) | public function down(Schema $schema): void

FILE: migrations/Version20240603190838.php
  class Version20240603190838 (line 10) | final class Version20240603190838 extends AbstractMigration
    method getDescription (line 12) | public function getDescription(): string
    method up (line 17) | public function up(Schema $schema): void
    method down (line 28) | public function down(Schema $schema): void

FILE: migrations/Version20240603230734.php
  class Version20240603230734 (line 13) | final class Version20240603230734 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 25) | public function down(Schema $schema): void

FILE: migrations/Version20240612234046.php
  class Version20240612234046 (line 13) | final class Version20240612234046 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 25) | public function down(Schema $schema): void

FILE: migrations/Version20240614120443.php
  class Version20240614120443 (line 10) | final class Version20240614120443 extends AbstractMigration
    method getDescription (line 12) | public function getDescription(): string
    method up (line 17) | public function up(Schema $schema): void
    method down (line 33) | public function down(Schema $schema): void

FILE: migrations/Version20240615225744.php
  class Version20240615225744 (line 10) | final class Version20240615225744 extends AbstractMigration
    method getDescription (line 12) | public function getDescription(): string
    method up (line 17) | public function up(Schema $schema): void
    method down (line 23) | public function down(Schema $schema): void

FILE: migrations/Version20240625162714.php
  class Version20240625162714 (line 10) | final class Version20240625162714 extends AbstractMigration
    method getDescription (line 12) | public function getDescription(): string
    method up (line 17) | public function up(Schema $schema): void
    method down (line 22) | public function down(Schema $schema): void

FILE: migrations/Version20240628142700.php
  class Version20240628142700 (line 10) | final class Version20240628142700 extends AbstractMigration
    method getDescription (line 12) | public function getDescription(): string
    method up (line 17) | public function up(Schema $schema): void
    method down (line 22) | public function down(Schema $schema): void

FILE: migrations/Version20240628145441.php
  class Version20240628145441 (line 10) | final class Version20240628145441 extends AbstractMigration
    method getDescription (line 12) | public function getDescription(): string
    method up (line 17) | public function up(Schema $schema): void
    method down (line 29) | public function down(Schema $schema): void

FILE: migrations/Version20240701113000.php
  class Version20240701113000 (line 11) | class Version20240701113000 extends AbstractMigration
    method getDescription (line 13) | public function getDescription(): string
    method up (line 18) | public function up(Schema $schema): void
    method down (line 24) | public function down(Schema $schema): void

FILE: migrations/Version20240706005744.php
  class Version20240706005744 (line 13) | final class Version20240706005744 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 26) | public function down(Schema $schema): void

FILE: migrations/Version20240715181419.php
  class Version20240715181419 (line 10) | final class Version20240715181419 extends AbstractMigration
    method getDescription (line 12) | public function getDescription(): string
    method up (line 17) | public function up(Schema $schema): void
    method down (line 28) | public function down(Schema $schema): void

FILE: migrations/Version20240718232800.php
  class Version20240718232800 (line 10) | final class Version20240718232800 extends AbstractMigration
    method getDescription (line 12) | public function getDescription(): string
    method up (line 17) | public function up(Schema $schema): void
    method down (line 23) | public function down(Schema $schema): void

FILE: migrations/Version20240729174207.php
  class Version20240729174207 (line 10) | final class Version20240729174207 extends AbstractMigration
    method getDescription (line 12) | public function getDescription(): string
    method up (line 17) | public function up(Schema $schema): void
    method down (line 22) | public function down(Schema $schema): void

FILE: migrations/Version20240815162107.php
  class Version20240815162107 (line 10) | final class Version20240815162107 extends AbstractMigration
    method getDescription (line 12) | public function getDescription(): string
    method up (line 17) | public function up(Schema $schema): void
    method down (line 23) | public function down(Schema $schema): void

FILE: migrations/Version20240820201944.php
  class Version20240820201944 (line 10) | final class Version20240820201944 extends AbstractMigration
    method getDescription (line 12) | public function getDescription(): string
    method up (line 17) | public function up(Schema $schema): void
    method down (line 46) | public function down(Schema $schema): void

FILE: migrations/Version20240831151328.php
  class Version20240831151328 (line 10) | final class Version20240831151328 extends AbstractMigration
    method getDescription (line 12) | public function getDescription(): string
    method up (line 17) | public function up(Schema $schema): void
    method down (line 42) | public function down(Schema $schema): void

FILE: migrations/Version20240923164233.php
  class Version20240923164233 (line 10) | final class Version20240923164233 extends AbstractMigration
    method getDescription (line 12) | public function getDescription(): string
    method up (line 17) | public function up(Schema $schema): void
    method down (line 23) | public function down(Schema $schema): void

FILE: migrations/Version20241104162329.php
  class Version20241104162655 (line 10) | final class Version20241104162655 extends AbstractMigration
    method getDescription (line 12) | public function getDescription(): string
    method up (line 17) | public function up(Schema $schema): void
    method down (line 24) | public function down(Schema $schema): void

FILE: migrations/Version20241124155724.php
  class Version20241124155724 (line 10) | final class Version20241124155724 extends AbstractMigration
    method getDescription (line 12) | public function getDescription(): string
    method up (line 17) | public function up(Schema $schema): void
    method down (line 25) | public function down(Schema $schema): void

FILE: migrations/Version20241125210454.php
  class Version20241125210454 (line 10) | final class Version20241125210454 extends AbstractMigration
    method getDescription (line 12) | public function getDescription(): string
    method up (line 17) | public function up(Schema $schema): void
    method down (line 36) | public function down(Schema $schema): void

FILE: migrations/Version20250128125727.php
  class Version20250128125727 (line 10) | final class Version20250128125727 extends AbstractMigration
    method getDescription (line 12) | public function getDescription(): string
    method up (line 17) | public function up(Schema $schema): void
    method down (line 24) | public function down(Schema $schema): void

FILE: migrations/Version20250203232039.php
  class Version20250203232039 (line 10) | final class Version20250203232039 extends AbstractMigration
    method getDescription (line 12) | public function getDescription(): string
    method up (line 17) | public function up(Schema $schema): void
    method down (line 31) | public function down(Schema $schema): void

FILE: migrations/Version20250204152300.php
  class Version20250204152300 (line 10) | class Version20250204152300 extends AbstractMigration
    method getDescription (line 12) | public function getDescription(): string
    method up (line 17) | public function up(Schema $schema): void
    method down (line 22) | public function down(Schema $schema): void

FILE: migrations/Version20250706115844.php
  class Version20250706115844 (line 10) | final class Version20250706115844 extends AbstractMigration
    method getDescription (line 12) | public function getDescription(): string
    method up (line 17) | public function up(Schema $schema): void
    method down (line 32) | public function down(Schema $schema): void

FILE: migrations/Version20250723183702.php
  class Version20250723183702 (line 10) | final class Version20250723183702 extends AbstractMigration
    method getDescription (line 12) | public function getDescription(): string
    method up (line 17) | public function up(Schema $schema): void
    method down (line 24) | public function down(Schema $schema): void

FILE: migrations/Version20250802102904.php
  class Version20250802102904 (line 10) | final class Version20250802102904 extends AbstractMigration
    method getDescription (line 12) | public function getDescription(): string
    method up (line 17) | public function up(Schema $schema): void
    method down (line 22) | public function down(Schema $schema): void

FILE: migrations/Version20250812194529.php
  class Version20250812194529 (line 10) | final class Version20250812194529 extends AbstractMigration
    method getDescription (line 12) | public function getDescription(): string
    method up (line 17) | public function up(Schema $schema): void
    method down (line 24) | public function down(Schema $schema): void

FILE: migrations/Version20250813132233.php
  class Version20250813132233 (line 10) | final class Version20250813132233 extends AbstractMigration
    method getDescription (line 12) | public function getDescription(): string
    method up (line 17) | public function up(Schema $schema): void
    method down (line 44) | public function down(Schema $schema): void

FILE: migrations/Version20250907112001.php
  class Version20250907112001 (line 10) | final class Version20250907112001 extends AbstractMigration
    method getDescription (line 12) | public function getDescription(): string
    method up (line 17) | public function up(Schema $schema): void
    method down (line 25) | public function down(Schema $schema): void

FILE: migrations/Version20250924105525.php
  class Version20250924105525 (line 10) | final class Version20250924105525 extends AbstractMigration
    method getDescription (line 12) | public function getDescription(): string
    method up (line 17) | public function up(Schema $schema): void
    method down (line 23) | public function down(Schema $schema): void

FILE: migrations/Version20251022104152.php
  class Version20251022104152 (line 10) | final class Version20251022104152 extends AbstractMigration
    method getDescription (line 12) | public function getDescription(): string
    method up (line 17) | public function up(Schema $schema): void
    method down (line 23) | public function down(Schema $schema): void

FILE: migrations/Version20251022115254.php
  class Version20251022115254 (line 10) | final class Version20251022115254 extends AbstractMigration
    method getDescription (line 12) | public function getDescription(): string
    method up (line 17) | public function up(Schema $schema): void
    method down (line 24) | public function down(Schema $schema): void

FILE: migrations/Version20251031174052.php
  class Version20251031174052 (line 10) | final class Version20251031174052 extends AbstractMigration
    method getDescription (line 12) | public function getDescription(): string
    method up (line 17) | public function up(Schema $schema): void
    method down (line 23) | public function down(Schema $schema): void

FILE: migrations/Version20251118112235.php
  class Version20251118112235 (line 10) | final class Version20251118112235 extends AbstractMigration
    method getDescription (line 12) | public function getDescription(): string
    method up (line 17) | public function up(Schema $schema): void
    method down (line 23) | public function down(Schema $schema): void

FILE: migrations/Version20251129140919.php
  class Version20251129140919 (line 10) | final class Version20251129140919 extends AbstractMigration
    method getDescription (line 12) | public function getDescription(): string
    method up (line 17) | public function up(Schema $schema): void
    method down (line 22) | public function down(Schema $schema): void

FILE: migrations/Version20251206145724.php
  class Version20251206145724 (line 10) | final class Version20251206145724 extends AbstractMigration
    method getDescription (line 12) | public function getDescription(): string
    method up (line 17) | public function up(Schema $schema): void
    method down (line 23) | public function down(Schema $schema): void

FILE: migrations/Version20251214111055.php
  class Version20251214111055 (line 10) | final class Version20251214111055 extends AbstractMigration
    method getDescription (line 12) | public function getDescription(): string
    method up (line 17) | public function up(Schema $schema): void
    method down (line 24) | public function down(Schema $schema): void

FILE: migrations/Version20260113103210.php
  class Version20260113103210 (line 10) | final class Version20260113103210 extends AbstractMigration
    method getDescription (line 12) | public function getDescription(): string
    method up (line 17) | public function up(Schema $schema): void
    method down (line 27) | public function down(Schema $schema): void

FILE: migrations/Version20260113151625.php
  class Version20260113151625 (line 10) | final class Version20260113151625 extends AbstractMigration
    method getDescription (line 12) | public function getDescription(): string
    method up (line 17) | public function up(Schema $schema): void
    method down (line 23) | public function down(Schema $schema): void

FILE: migrations/Version20260118131639.php
  class Version20260118131639 (line 10) | final class Version20260118131639 extends AbstractMigration
    method getDescription (line 12) | public function getDescription(): string
    method up (line 17) | public function up(Schema $schema): void
    method down (line 22) | public function down(Schema $schema): void

FILE: migrations/Version20260118142727.php
  class Version20260118142727 (line 10) | final class Version20260118142727 extends AbstractMigration
    method getDescription (line 12) | public function getDescription(): string
    method up (line 17) | public function up(Schema $schema): void
    method down (line 24) | public function down(Schema $schema): void

FILE: migrations/Version20260120175744.php
  class Version20260120175744 (line 10) | final class Version20260120175744 extends AbstractMigration
    method getDescription (line 12) | public function getDescription(): string
    method up (line 17) | public function up(Schema $schema): void
    method down (line 39) | public function down(Schema $schema): void

FILE: migrations/Version20260127111110.php
  class Version20260127111110 (line 10) | final class Version20260127111110 extends AbstractMigration
    method getDescription (line 12) | public function getDescription(): string
    method up (line 17) | public function up(Schema $schema): void
    method down (line 48) | public function down(Schema $schema): void

FILE: migrations/Version20260201131000.php
  class Version20260201131000 (line 10) | final class Version20260201131000 extends AbstractMigration
    method getDescription (line 12) | public function getDescription(): string
    method up (line 17) | public function up(Schema $schema): void
    method down (line 25) | public function down(Schema $schema): void

FILE: migrations/Version20260224224633.php
  class Version20260224224633 (line 13) | final class Version20260224224633 extends AbstractMigration
    method getDescription (line 15) | public function getDescription(): string
    method up (line 20) | public function up(Schema $schema): void
    method down (line 27) | public function down(Schema $schema): void

FILE: migrations/Version20260303103217.php
  class Version20260303103217 (line 10) | final class Version20260303103217 extends AbstractMigration
    method getDescription (line 12) | public function getDescription(): string
    method up (line 17) | public function up(Schema $schema): void
    method down (line 22) | public function down(Schema $schema): void

FILE: migrations/Version20260303142852.php
  class Version20260303142852 (line 10) | final class Version20260303142852 extends AbstractMigration
    method getDescription (line 12) | public function getDescription(): string
    method up (line 17) | public function up(Schema $schema): void
    method down (line 66) | public function down(Schema $schema): void

FILE: migrations/Version20260315190023.php
  class Version20260315190023 (line 10) | final class Version20260315190023 extends AbstractMigration
    method getDescription (line 12) | public function getDescription(): string
    method up (line 17) | public function up(Schema $schema): void
    method down (line 22) | public function down(Schema $schema): void

FILE: migrations/Version20260330132857.php
  class Version20260330132857 (line 10) | final class Version20260330132857 extends AbstractMigration
    method getDescription (line 12) | public function getDescription(): string
    method up (line 17) | public function up(Schema $schema): void
    method down (line 25) | public function down(Schema $schema): void

FILE: src/ActivityPub/ActorHandle.php
  class ActorHandle (line 7) | class ActorHandle
    method __construct (line 11) | public function __construct(
    method __toString (line 19) | public function __toString(): string
    method parse (line 24) | public static function parse(string $handle): ?static
    method isHandle (line 40) | public static function isHandle(string $handle): bool
    method isValid (line 49) | public function isValid(): bool
    method getPortString (line 55) | public function getPortString(): string
    method setPort (line 61) | public function setPort(int|string|null $port): static
    method getDomain (line 73) | public function getDomain(): string
    method setDomain (line 79) | public function setDomain(?string $domain): static
    method formatWithPrefix (line 89) | public function formatWithPrefix(?string $prefix): string
    method plainHandle (line 95) | public function plainHandle(): string
    method atHandle (line 101) | public function atHandle(): string
    method bangHandle (line 107) | public function bangHandle(): string

FILE: src/ActivityPub/JsonRd.php
  class JsonRd (line 33) | class JsonRd
    method addAlias (line 83) | public function addAlias(string $uri): static
    method removeAlias (line 90) | public function removeAlias(string $uri): static
    method addProperty (line 100) | public function addProperty(string $uri, ?string $value = null): static
    method removeProperty (line 107) | public function removeProperty(string $uri): static
    method addLink (line 117) | public function addLink(JsonRdLink $link): static
    method removeLink (line 124) | public function removeLink(JsonRdLink $link): static
    method toJSON (line 138) | public function toJSON(): string
    method toArray (line 146) | public function toArray(): array
    method getSubject (line 164) | public function getSubject()
    method setSubject (line 169) | public function setSubject(string $subject): static
    method getAliases (line 179) | public function getAliases(): array
    method setAliases (line 187) | protected function setAliases(array $aliases): static
    method getLinks (line 197) | public function getLinks(): array
    method setLinks (line 205) | protected function setLinks(array $links): static
    method getProperties (line 215) | public function getProperties(): array
    method setProperties (line 223) | protected function setProperties(array $properties): static

FILE: src/ActivityPub/JsonRdLink.php
  class JsonRdLink (line 45) | class JsonRdLink
    method addTitle (line 230) | public function addTitle(string $locale, string $value): static
    method removeTitle (line 239) | public function removeTitle(string $locale): static
    method addProperty (line 249) | public function addProperty(string $url, string $value): static
    method removeProperty (line 256) | public function removeProperty(string $url): static
    method toArray (line 269) | public function toArray(): array
    method getRel (line 282) | public function getRel(): string
    method setRel (line 290) | public function setRel(string $relation): static
    method getHref (line 306) | public function getHref(): ?string
    method setHref (line 314) | public function setHref(string $href): static
    method getType (line 321) | public function getType(): ?string
    method setType (line 326) | public function setType(string $type): static
    method getTitles (line 336) | public function getTitles(): array
    method setTitles (line 344) | protected function setTitles(array $titles): static
    method getProperties (line 354) | public function getProperties(): array
    method setProperties (line 362) | protected function setProperties(array $properties): static

FILE: src/ArgumentValueResolver/FavouriteResolver.php
  class FavouriteResolver (line 13) | class FavouriteResolver implements ValueResolverInterface
    method __construct (line 15) | public function __construct(private readonly EntityManagerInterface $e...
    method resolve (line 19) | public function resolve(Request $request, ArgumentMetadata $argument):...

FILE: src/ArgumentValueResolver/MagazineResolver.php
  class MagazineResolver (line 13) | class MagazineResolver implements ValueResolverInterface
    method __construct (line 15) | public function __construct(private readonly MagazineRepository $repos...
    method resolve (line 19) | public function resolve(Request $request, ArgumentMetadata $argument):...

FILE: src/ArgumentValueResolver/ReportResolver.php
  class ReportResolver (line 13) | class ReportResolver implements ValueResolverInterface
    method __construct (line 15) | public function __construct(private readonly EntityManagerInterface $e...
    method resolve (line 19) | public function resolve(Request $request, ArgumentMetadata $argument):...

FILE: src/ArgumentValueResolver/UserResolver.php
  class UserResolver (line 16) | class UserResolver implements ValueResolverInterface
    method __construct (line 18) | public function __construct(
    method resolve (line 25) | public function resolve(Request $request, ArgumentMetadata $argument):...

FILE: src/ArgumentValueResolver/VotableResolver.php
  class VotableResolver (line 13) | class VotableResolver implements ValueResolverInterface
    method __construct (line 15) | public function __construct(private readonly EntityManagerInterface $e...
    method resolve (line 19) | public function resolve(Request $request, ArgumentMetadata $argument):...

FILE: src/Command/ActorUpdateCommand.php
  class ActorUpdateCommand (line 20) | #[AsCommand(
    method __construct (line 26) | public function __construct(
    method configure (line 34) | protected function configure(): void
    method execute (line 42) | protected function execute(InputInterface $input, OutputInterface $out...

FILE: src/Command/AdminCommand.php
  class AdminCommand (line 17) | #[AsCommand(
    method __construct (line 23) | public function __construct(
    method configure (line 30) | protected function configure(): void
    method execute (line 37) | protected function execute(InputInterface $input, OutputInterface $out...

FILE: src/Command/ApImportObject.php
  class ApImportObject (line 16) | #[AsCommand(
    method __construct (line 22) | public function __construct(
    method configure (line 29) | protected function configure(): void
    method execute (line 34) | protected function execute(InputInterface $input, OutputInterface $out...

FILE: src/Command/AwesomeBot/AwesomeBotEntries.php
  class AwesomeBotEntries (line 22) | #[AsCommand(name: 'mbin:awesome-bot:entries:create')]
    method __construct (line 29) | public function __construct(
    method configure (line 38) | protected function configure(): void
    method execute (line 48) | protected function execute(InputInterface $input, OutputInterface $out...

FILE: src/Command/AwesomeBot/AwesomeBotFixtures.php
  class AwesomeBotFixtures (line 23) | #[AsCommand(name: 'mbin:awesome-bot:fixtures:create')]
    method __construct (line 26) | public function __construct(
    method configure (line 35) | protected function configure(): void
    method execute (line 42) | protected function execute(InputInterface $input, OutputInterface $out...
    method getEntries (line 140) | private function getEntries(): array
    method prepareMagazines (line 338) | private function prepareMagazines(OutputInterface $output, array $entr...

FILE: src/Command/AwesomeBot/AwesomeBotMagazine.php
  class AwesomeBotMagazine (line 25) | #[AsCommand(name: 'mbin:awesome-bot:magazine:create')]
    method __construct (line 28) | public function __construct(
    method configure (line 36) | protected function configure(): void
    method execute (line 47) | protected function execute(InputInterface $input, OutputInterface $out...
    method createBadges (line 85) | #[Pure]

FILE: src/Command/CheckDuplicatesUsersMagazines.php
  class CheckDuplicatesUsersMagazines (line 26) | #[AsCommand(
    method __construct (line 32) | public function __construct(
    method configure (line 45) | protected function configure(): void
    method execute (line 51) | protected function execute(InputInterface $input, OutputInterface $out...
    method findDuplicates (line 121) | private function findDuplicates(SymfonyStyle $io, string $entity): array
    method displayDuplicatesTable (line 148) | private function displayDuplicatesTable(SymfonyStyle $io, array $resul...
    method deleteEntities (line 185) | private function deleteEntities(SymfonyStyle $io, string $entity, arra...
    method fixDuplicatesByHandle (line 223) | protected function fixDuplicatesByHandle(SymfonyStyle $io, bool $dryRu...
    method getUsersToUpdateFromUrl (line 287) | private function getUsersToUpdateFromUrl(string $url, SymfonyStyle $io...
    method purgeUser (line 368) | private function purgeUser(User $user): void
    method mergeRemoteUsers (line 386) | private function mergeRemoteUsers(array $users, SymfonyStyle $io, bool...

FILE: src/Command/DeleteMonitoringDataCommand.php
  class DeleteMonitoringDataCommand (line 15) | #[AsCommand(
    method __construct (line 21) | public function __construct(
    method configure (line 27) | protected function configure(): void
    method execute (line 36) | protected function execute(InputInterface $input, OutputInterface $out...

FILE: src/Command/DeleteOrphanedImagesCommand.php
  class DeleteOrphanedImagesCommand (line 18) | #[AsCommand(
    method __construct (line 24) | public function __construct(
    method configure (line 31) | protected function configure(): void
    method execute (line 45) | protected function execute(InputInterface $input, OutputInterface $out...

FILE: src/Command/DeleteUserCommand.php
  class DeleteUserCommand (line 17) | #[AsCommand(
    method __construct (line 23) | public function __construct(
    method configure (line 30) | protected function configure(): void
    method execute (line 35) | protected function execute(InputInterface $input, OutputInterface $out...

FILE: src/Command/DocumentationGenerateFederationCommand.php
  class DocumentationGenerateFederationCommand (line 62) | #[AsCommand(
    method __construct (line 68) | public function __construct(
    method configure (line 110) | protected function configure()
    method execute (line 116) | protected function execute(InputInterface $input, OutputInterface $out...
    method generateMarkdown (line 163) | private function generateMarkdown(string $content): string
    method createImage (line 323) | protected function createImage(): Image

FILE: src/Command/ImageCacheCommand.php
  class ImageCacheCommand (line 21) | #[AsCommand(
    method __construct (line 27) | public function __construct(private readonly EntityManagerInterface $e...
    method execute (line 32) | protected function execute(InputInterface $input, OutputInterface $out...
    method buildUsersCache (line 44) | private function buildUsersCache(): void
    method buildEntriesCache (line 68) | private function buildEntriesCache(): void
    method buildEntryCommentsCache (line 92) | private function buildEntryCommentsCache(): void
    method buildPostsCache (line 116) | private function buildPostsCache(): void
    method buildPostCommentsCache (line 140) | private function buildPostCommentsCache(): void
    method buildMagazinesCache (line 164) | private function buildMagazinesCache(): void

FILE: src/Command/MagazineCreateCommand.php
  class MagazineCreateCommand (line 19) | #[AsCommand(
    method __construct (line 25) | public function __construct(
    method configure (line 33) | protected function configure(): void
    method execute (line 46) | protected function execute(InputInterface $input, OutputInterface $out...

FILE: src/Command/MagazineUnsubCommand.php
  class MagazineUnsubCommand (line 16) | #[AsCommand(
    method __construct (line 22) | public function __construct(
    method configure (line 29) | protected function configure(): void
    method execute (line 34) | protected function execute(InputInterface $input, OutputInterface $out...

FILE: src/Command/ModeratorCommand.php
  class ModeratorCommand (line 17) | #[AsCommand(
    method __construct (line 23) | public function __construct(
    method configure (line 30) | protected function configure(): void
    method execute (line 37) | protected function execute(InputInterface $input, OutputInterface $out...

FILE: src/Command/MoveEntriesByTagCommand.php
  class MoveEntriesByTagCommand (line 23) | #[AsCommand(
    method __construct (line 29) | public function __construct(
    method configure (line 37) | protected function configure(): void
    method execute (line 43) | protected function execute(InputInterface $input, OutputInterface $out...
    method moveComments (line 89) | private function moveComments(ArrayCollection|Collection $comments, Ma...
    method moveReports (line 107) | private function moveReports(ArrayCollection|Collection $reports, Maga...
    method moveFavourites (line 122) | private function moveFavourites(ArrayCollection|Collection $favourites...

FILE: src/Command/MovePostsByTagCommand.php
  class MovePostsByTagCommand (line 24) | #[AsCommand(
    method __construct (line 30) | public function __construct(
    method configure (line 39) | protected function configure(): void
    method execute (line 45) | protected function execute(InputInterface $input, OutputInterface $out...
    method moveComments (line 78) | private function moveComments(ArrayCollection|Collection $comments, Ma...
    method moveReports (line 96) | private function moveReports(ArrayCollection|Collection $reports, Maga...
    method moveFavourites (line 111) | private function moveFavourites(ArrayCollection|Collection $favourites...

FILE: src/Command/PostMagazinesUpdateCommand.php
  class PostMagazinesUpdateCommand (line 17) | #[AsCommand(
    method __construct (line 23) | public function __construct(
    method execute (line 32) | protected function execute(InputInterface $input, OutputInterface $out...
    method handleMagazine (line 42) | private function handleMagazine(Post $post, OutputInterface $output): ...

FILE: src/Command/RefreshImageMetaDataCommand.php
  class RefreshImageMetaDataCommand (line 20) | #[AsCommand(
    method __construct (line 26) | public function __construct(
    method configure (line 35) | protected function configure(): void
    method execute (line 41) | protected function execute(InputInterface $input, OutputInterface $out...

FILE: src/Command/RemoveAccountsMarkedForDeletion.php
  class RemoveAccountsMarkedForDeletion (line 15) | #[AsCommand(
    method __construct (line 21) | public function __construct(
    method execute (line 28) | protected function execute(InputInterface $input, OutputInterface $out...

FILE: src/Command/RemoveDMAndBanCommand.php
  class RemoveDMAndBanCommand (line 19) | #[AsCommand(
    method __construct (line 27) | public function __construct(
    method configure (line 35) | protected function configure(): void
    method execute (line 40) | protected function execute(InputInterface $input, OutputInterface $out...
    method searchMessages (line 77) | private function searchMessages(SymfonyStyle $io): void
    method banSenders (line 107) | private function banSenders(): void
    method removeMessages (line 126) | private function removeMessages(): void

FILE: src/Command/RemoveDeadMessagesCommand.php
  class RemoveDeadMessagesCommand (line 14) | #[AsCommand(
    method __construct (line 20) | public function __construct(
    method configure (line 26) | protected function configure(): void
    method execute (line 30) | protected function execute(InputInterface $input, OutputInterface $out...
    method removeDeadMessages (line 42) | private function removeDeadMessages(): void

FILE: src/Command/RemoveDuplicatesCommand.php
  class RemoveDuplicatesCommand (line 16) | #[AsCommand(
    method __construct (line 22) | public function __construct(
    method configure (line 28) | protected function configure(): void
    method execute (line 32) | protected function execute(InputInterface $input, OutputInterface $out...
    method removePosts (line 42) | private function removePosts(): void
    method removeActors (line 70) | private function removeActors(): void

FILE: src/Command/RemoveFailedMessagesCommand.php
  class RemoveFailedMessagesCommand (line 14) | #[AsCommand(
    method __construct (line 20) | public function __construct(
    method configure (line 26) | protected function configure(): void
    method execute (line 30) | protected function execute(InputInterface $input, OutputInterface $out...
    method removeFailedMessages (line 42) | private function removeFailedMessages(): void

FILE: src/Command/RemoveOldImagesCommand.php
  class RemoveOldImagesCommand (line 26) | #[AsCommand(
    method __construct (line 36) | public function __construct(
    method configure (line 47) | public function configure()
    method execute (line 59) | protected function execute(InputInterface $input, OutputInterface $out...
    method deleteAllImages (line 102) | private function deleteAllImages($output): int
    method deleteThreadsImages (line 118) | private function deleteThreadsImages(OutputInterface $output): int
    method deleteThreadCommentsImages (line 160) | private function deleteThreadCommentsImages(OutputInterface $output): int
    method deletePostsImages (line 201) | private function deletePostsImages(OutputInterface $output): int
    method deletePostCommentsImages (line 243) | private function deletePostCommentsImages(OutputInterface $output): int
    method deleteUsersImages (line 284) | private function deleteUsersImages(OutputInterface $output): int

FILE: src/Command/RemoveRemoteMediaCommand.php
  class RemoveRemoteMediaCommand (line 19) | #[AsCommand(
    method __construct (line 25) | public function __construct(
    method configure (line 34) | protected function configure(): void
    method execute (line 41) | protected function execute(InputInterface $input, OutputInterface $out...

FILE: src/Command/SubMagazineCommand.php
  class SubMagazineCommand (line 18) | #[AsCommand(
    method __construct (line 24) | public function __construct(
    method configure (line 32) | protected function configure(): void
    method execute (line 40) | protected function execute(InputInterface $input, OutputInterface $out...

FILE: src/Command/Update/ApKeysUpdateCommand.php
  class ApKeysUpdateCommand (line 20) | #[AsCommand(
    method __construct (line 26) | public function __construct(
    method execute (line 35) | protected function execute(InputInterface $input, OutputInterface $out...
    method generate (line 61) | private function generate(array $actors): void

FILE: src/Command/Update/Async/ImageBlurhashHandler.php
  class ImageBlurhashHandler (line 13) | #[AsMessageHandler]
    method __construct (line 16) | public function __construct(
    method __invoke (line 25) | public function __invoke(ImageBlurhashMessage $message): bool

FILE: src/Command/Update/Async/ImageBlurhashMessage.php
  class ImageBlurhashMessage (line 9) | class ImageBlurhashMessage implements AsyncMessageInterface
    method __construct (line 11) | public function __construct(public int $id)

FILE: src/Command/Update/Async/NoteVisibilityHandler.php
  class NoteVisibilityHandler (line 13) | #[AsMessageHandler]
    method __construct (line 16) | public function __construct(
    method __invoke (line 22) | public function __invoke(NoteVisibilityMessage $message): void

FILE: src/Command/Update/Async/NoteVisibilityMessage.php
  class NoteVisibilityMessage (line 11) | class NoteVisibilityMessage implements AsyncMessageInterface
    method __construct (line 16) | public function __construct(public int $id, public string $class)

FILE: src/Command/Update/ImageBlurhashUpdateCommand.php
  class ImageBlurhashUpdateCommand (line 15) | #[AsCommand(
    method __construct (line 21) | public function __construct(
    method execute (line 28) | protected function execute(InputInterface $input, OutputInterface $out...

FILE: src/Command/Update/LocalMagazineApProfile.php
  class LocalMagazineApProfile (line 15) | #[AsCommand(
    method __construct (line 21) | public function __construct(
    method execute (line 28) | protected function execute(InputInterface $input, OutputInterface $out...

FILE: src/Command/Update/NoteVisibilityUpdateCommand.php
  class NoteVisibilityUpdateCommand (line 15) | #[AsCommand(
    method __construct (line 21) | public function __construct(
    method execute (line 28) | protected function execute(InputInterface $input, OutputInterface $out...

FILE: src/Command/Update/PostCommentRootUpdateCommand.php
  class PostCommentRootUpdateCommand (line 15) | #[AsCommand(
    method __construct (line 21) | public function __construct(
    method execute (line 28) | protected function execute(InputInterface $input, OutputInterface $out...
    method update (line 47) | private function update(PostComment $comment): void

FILE: src/Command/Update/PushKeysUpdateCommand.php
  class PushKeysUpdateCommand (line 16) | #[AsCommand(
    method __construct (line 22) | public function __construct(
    method execute (line 29) | protected function execute(InputInterface $input, OutputInterface $out...

FILE: src/Command/Update/RemoveMagazineNameFromTagsCommand.php
  class RemoveMagazineNameFromTagsCommand (line 14) | #[AsCommand(
    method __construct (line 20) | public function __construct(
    method execute (line 27) | protected function execute(InputInterface $input, OutputInterface $out...

FILE: src/Command/Update/RemoveRemoteEntriesFromLocalDomainCommand.php
  class RemoveRemoteEntriesFromLocalDomainCommand (line 17) | #[AsCommand(
    method __construct (line 23) | public function __construct(
    method execute (line 31) | protected function execute(InputInterface $input, OutputInterface $out...

FILE: src/Command/Update/SlugUpdateCommand.php
  class SlugUpdateCommand (line 16) | #[AsCommand(
    method __construct (line 22) | public function __construct(
    method execute (line 29) | protected function execute(InputInterface $input, OutputInterface $out...

FILE: src/Command/Update/TagsUpdateCommand.php
  class TagsUpdateCommand (line 17) | #[AsCommand(
    method __construct (line 23) | public function __construct(
    method execute (line 30) | protected function execute(InputInterface $input, OutputInterface $out...

FILE: src/Command/Update/UserLastActiveUpdateCommand.php
  class UserLastActiveUpdateCommand (line 16) | #[AsCommand(
    method __construct (line 22) | public function __construct(
    method execute (line 29) | protected function execute(InputInterface $input, OutputInterface $out...

FILE: src/Command/UserCommand.php
  class UserCommand (line 19) | #[AsCommand(
    method __construct (line 25) | public function __construct(
    method configure (line 33) | protected function configure(): void
    method execute (line 44) | protected function execute(InputInterface $input, OutputInterface $out...
    method createUser (line 71) | private function createUser(InputInterface $input, SymfonyStyle $io): ...

FILE: src/Command/UserPasswordCommand.php
  class UserPasswordCommand (line 18) | #[AsCommand(
    method __construct (line 24) | public function __construct(
    method configure (line 33) | protected function configure(): void
    method execute (line 39) | protected function execute(InputInterface $input, OutputInterface $out...

FILE: src/Command/UserRotatePrivateKeys.php
  class UserRotatePrivateKeys (line 20) | #[AsCommand(
    method __construct (line 26) | public function __construct(
    method configure (line 37) | protected function configure(): void
    method execute (line 44) | protected function execute(InputInterface $input, OutputInterface $out...

FILE: src/Command/UserUnsubCommand.php
  class UserUnsubCommand (line 16) | #[AsCommand(
    method __construct (line 22) | public function __construct(
    method configure (line 29) | protected function configure(): void
    method execute (line 34) | protected function execute(InputInterface $input, OutputInterface $out...

FILE: src/Command/VerifyCommand.php
  class VerifyCommand (line 18) | #[AsCommand(
    method __construct (line 24) | public function __construct(
    method configure (line 32) | protected function configure(): void
    method execute (line 39) | protected function execute(InputInterface $input, OutputInterface $out...

FILE: src/Controller/AboutController.php
  class AboutController (line 13) | class AboutController extends AbstractController
    method __invoke (line 15) | public function __invoke(SettingsManager $settings, SiteRepository $re...

FILE: src/Controller/AbstractController.php
  class AbstractController (line 23) | abstract class AbstractController extends BaseAbstractController
    method getUserOrThrow (line 25) | protected function getUserOrThrow(): User
    method validateCsrf (line 36) | protected function validateCsrf(string $id, $token): void
    method redirectToRefererOrHome (line 43) | protected function redirectToRefererOrHome(Request $request, ?string $...
    method getJsonSuccessResponse (line 52) | protected function getJsonSuccessResponse(): JsonResponse
    method getJsonFormResponse (line 62) | protected function getJsonFormResponse(
    method getPageNb (line 79) | protected function getPageNb(Request $request): int
    method redirectToEntry (line 84) | protected function redirectToEntry(Entry $entry): Response
    method redirectToPost (line 96) | protected function redirectToPost(Post $post): Response
    method redirectToMagazine (line 108) | protected function redirectToMagazine(Magazine $magazine, ?string $sor...

FILE: src/Controller/ActivityPub/ContextsController.php
  class ContextsController (line 11) | class ContextsController
    method __invoke (line 13) | public function __invoke(Request $request, ContextsProvider $context):...

FILE: src/Controller/ActivityPub/EntryCommentController.php
  class EntryCommentController (line 19) | class EntryCommentController extends AbstractController
    method __construct (line 23) | public function __construct(
    method __invoke (line 29) | public function __invoke(

FILE: src/Controller/ActivityPub/EntryController.php
  class EntryController (line 17) | class EntryController extends AbstractController
    method __construct (line 19) | public function __construct(
    method __invoke (line 25) | public function __invoke(

FILE: src/Controller/ActivityPub/HostMetaController.php
  class HostMetaController (line 15) | class HostMetaController
    method __construct (line 17) | public function __construct(
    method __invoke (line 22) | public function __invoke(): Response

FILE: src/Controller/ActivityPub/InstanceController.php
  class InstanceController (line 13) | class InstanceController
    method __invoke (line 15) | public function __invoke(Request $request, InstanceFactory $instanceFa...

FILE: src/Controller/ActivityPub/InstanceOutboxController.php
  class InstanceOutboxController (line 11) | class InstanceOutboxController
    method __invoke (line 13) | public function __invoke(string $kbinDomain, Request $request, Instanc...

FILE: src/Controller/ActivityPub/Magazine/MagazineController.php
  class MagazineController (line 12) | class MagazineController extends AbstractController
    method __construct (line 14) | public function __construct(private readonly GroupFactory $groupFactory)
    method __invoke (line 18) | public function __invoke(Magazine $magazine): JsonResponse

FILE: src/Controller/ActivityPub/Magazine/MagazineFollowersController.php
  class MagazineFollowersController (line 17) | class MagazineFollowersController extends AbstractController
    method __construct (line 19) | public function __construct(
    method __invoke (line 27) | public function __invoke(Magazine $magazine, Request $request): JsonRe...
    method getCollectionItems (line 45) | #[ArrayShape([

FILE: src/Controller/ActivityPub/Magazine/MagazineInboxController.php
  class MagazineInboxController (line 13) | class MagazineInboxController
    method __construct (line 15) | public function __construct(private readonly MessageBusInterface $bus,...
    method __invoke (line 19) | public function __invoke(Request $request): JsonResponse

FILE: src/Controller/ActivityPub/Magazine/MagazineModeratorsController.php
  class MagazineModeratorsController (line 12) | class MagazineModeratorsController
    method __construct (line 14) | public function __construct(
    method __invoke (line 19) | public function __invoke(Magazine $magazine, Request $request): JsonRe...

FILE: src/Controller/ActivityPub/Magazine/MagazineOutboxController.php
  class MagazineOutboxController (line 9) | class MagazineOutboxController
    method __construct (line 11) | public function __construct()
    method __invoke (line 15) | public function __invoke(): JsonResponse

FILE: src/Controller/ActivityPub/Magazine/MagazinePinnedController.php
  class MagazinePinnedController (line 12) | class MagazinePinnedController
    method __construct (line 14) | public function __construct(
    method __invoke (line 19) | public function __invoke(Magazine $magazine, Request $request): JsonRe...

FILE: src/Controller/ActivityPub/MessageController.php
  class MessageController (line 15) | class MessageController extends AbstractController
    method __construct (line 17) | public function __construct(
    method __invoke (line 22) | public function __invoke(

FILE: src/Controller/ActivityPub/NodeInfoController.php
  class NodeInfoController (line 11) | class NodeInfoController
    method __construct (line 16) | public function __construct(
    method nodeInfo (line 25) | public function nodeInfo(): JsonResponse
    method nodeInfoV2 (line 35) | public function nodeInfoV2(string $version): JsonResponse
    method getLinks (line 45) | private function getLinks(): array

FILE: src/Controller/ActivityPub/ObjectController.php
  class ObjectController (line 13) | class ObjectController
    method __construct (line 15) | public function __construct(
    method __invoke (line 21) | public function __invoke(string $id, Request $request): JsonResponse

FILE: src/Controller/ActivityPub/PostCommentController.php
  class PostCommentController (line 19) | class PostCommentController extends AbstractController
    method __construct (line 23) | public function __construct(
    method __invoke (line 29) | public function __invoke(

FILE: src/Controller/ActivityPub/PostController.php
  class PostController (line 17) | class PostController extends AbstractController
    method __construct (line 19) | public function __construct(
    method __invoke (line 25) | public function __invoke(

FILE: src/Controller/ActivityPub/ReportController.php
  class ReportController (line 16) | class ReportController extends AbstractController
    method __construct (line 18) | public function __construct(
    method __invoke (line 23) | public function __invoke(

FILE: src/Controller/ActivityPub/SharedInboxController.php
  class SharedInboxController (line 13) | class SharedInboxController
    method __construct (line 15) | public function __construct(
    method __invoke (line 21) | public function __invoke(Request $request): JsonResponse

FILE: src/Controller/ActivityPub/User/UserController.php
  class UserController (line 15) | class UserController extends AbstractController
    method __construct (line 17) | public function __construct(
    method __invoke (line 23) | public function __invoke(User $user, Request $request): JsonResponse

FILE: src/Controller/ActivityPub/User/UserFollowersController.php
  class UserFollowersController (line 17) | class UserFollowersController
    method __construct (line 19) | public function __construct(
    method followers (line 27) | public function followers(User $user, Request $request): JsonResponse
    method get (line 32) | public function get(User $user, Request $request, string $type): JsonR...
    method getCollectionInfo (line 47) | #[ArrayShape([
    method getCollectionItems (line 67) | #[ArrayShape([
    method following (line 101) | public function following(User $user, Request $request): JsonResponse

FILE: src/Controller/ActivityPub/User/UserInboxController.php
  class UserInboxController (line 13) | class UserInboxController
    method __construct (line 15) | public function __construct(private readonly MessageBusInterface $bus,...
    method __invoke (line 19) | public function __invoke(Request $request): JsonResponse

FILE: src/Controller/ActivityPub/User/UserOutboxController.php
  class UserOutboxController (line 13) | class UserOutboxController extends AbstractController
    method __construct (line 15) | public function __construct(
    method __invoke (line 20) | public function __invoke(User $user, Request $request): JsonResponse

FILE: src/Controller/ActivityPub/WebFingerController.php
  class WebFingerController (line 14) | class WebFingerController
    method __construct (line 16) | public function __construct(
    method __invoke (line 22) | public function __invoke(Request $request): JsonResponse

FILE: src/Controller/Admin/AdminClearCacheController.php
  class AdminClearCacheController (line 15) | class AdminClearCacheController extends AbstractController
    method __invoke (line 17) | #[IsGranted('ROLE_ADMIN')]

FILE: src/Controller/Admin/AdminDashboardController.php
  class AdminDashboardController (line 12) | class AdminDashboardController extends AbstractController
    method __construct (line 14) | public function __construct(private readonly InstanceStatsManager $cou...
    method __invoke (line 18) | #[IsGranted('ROLE_ADMIN')]

FILE: src/Controller/Admin/AdminDeletionController.php
  class AdminDeletionController (line 14) | class AdminDeletionController extends AbstractController
    method __construct (line 16) | public function __construct(
    method users (line 22) | #[IsGranted('ROLE_ADMIN')]
    method magazines (line 30) | #[IsGranted('ROLE_ADMIN')]

FILE: src/Controller/Admin/AdminFederationController.php
  class AdminFederationController (line 21) | class AdminFederationController extends AbstractController
    method __construct (line 23) | public function __construct(
    method __invoke (line 31) | #[IsGranted('ROLE_ADMIN')]
    method banInstance (line 68) | #[IsGranted('ROLE_ADMIN')]
    method unbanInstance (line 95) | #[IsGranted('ROLE_ADMIN')]
    method allowInstance (line 104) | #[IsGranted('ROLE_ADMIN')]
    method denyInstance (line 113) | #[IsGranted('ROLE_ADMIN')]

FILE: src/Controller/Admin/AdminMagazineOwnershipRequestController.php
  class AdminMagazineOwnershipRequestController (line 16) | class AdminMagazineOwnershipRequestController extends AbstractController
    method __construct (line 18) | public function __construct(
    method requests (line 24) | #[IsGranted('ROLE_ADMIN')]
    method accept (line 32) | #[IsGranted('ROLE_ADMIN')]
    method reject (line 42) | #[IsGranted('ROLE_ADMIN')]

FILE: src/Controller/Admin/AdminModeratorController.php
  class AdminModeratorController (line 17) | class AdminModeratorController extends AbstractController
    method __construct (line 19) | public function __construct(
    method moderators (line 25) | #[IsGranted('ROLE_ADMIN')]
    method removeModerator (line 49) | #[IsGranted('ROLE_ADMIN')]

FILE: src/Controller/Admin/AdminMonitoringController.php
  class AdminMonitoringController (line 20) | class AdminMonitoringController extends AbstractController
    method __construct (line 22) | public function __construct(
    method overview (line 30) | #[IsGranted('ROLE_ADMIN')]
    method getOverViewChart (line 61) | private function getOverViewChart(MonitoringExecutionContextFilterDto ...
    method getOverviewChartData (line 85) | public function getOverviewChartData(MonitoringExecutionContextFilterD...
    method single (line 151) | #[IsGranted('ROLE_ADMIN')]

FILE: src/Controller/Admin/AdminPagesController.php
  class AdminPagesController (line 17) | class AdminPagesController extends AbstractController
    method __construct (line 19) | public function __construct(
    method __invoke (line 25) | #[IsGranted('ROLE_ADMIN')]

FILE: src/Controller/Admin/AdminReportController.php
  class AdminReportController (line 15) | class AdminReportController extends AbstractController
    method __construct (line 17) | public function __construct(
    method __invoke (line 23) | #[IsGranted(new Expression('is_granted("ROLE_ADMIN") or is_granted("RO...

FILE: src/Controller/Admin/AdminSettingsController.php
  class AdminSettingsController (line 16) | class AdminSettingsController extends AbstractController
    method __construct (line 18) | public function __construct(
    method __invoke (line 24) | #[IsGranted('ROLE_ADMIN')]

FILE: src/Controller/Admin/AdminSignupRequestsController.php
  class AdminSignupRequestsController (line 18) | class AdminSignupRequestsController extends AbstractController
    method __construct (line 20) | public function __construct(
    method requests (line 27) | #[IsGranted(new Expression('is_granted("ROLE_ADMIN") or is_granted("RO...
    method approve (line 49) | #[IsGranted(new Expression('is_granted("ROLE_ADMIN") or is_granted("RO...
    method reject (line 57) | #[IsGranted(new Expression('is_granted("ROLE_ADMIN") or is_granted("RO...

FILE: src/Controller/Admin/AdminUsersController.php
  class AdminUsersController (line 17) | class AdminUsersController extends AbstractController
    method __construct (line 19) | public function __construct(
    method active (line 26) | #[IsGranted('ROLE_ADMIN')]
    method inactive (line 57) | #[IsGranted('ROLE_ADMIN')]
    method suspended (line 79) | #[IsGranted('ROLE_ADMIN')]
    method banned (line 104) | #[IsGranted('ROLE_ADMIN')]

FILE: src/Controller/AgentController.php
  class AgentController (line 10) | class AgentController extends AbstractController
    method __invoke (line 12) | public function __invoke(Request $request): Response

FILE: src/Controller/AjaxController.php
  class AjaxController (line 46) | class AjaxController extends AbstractController
    method __construct (line 48) | public function __construct(
    method fetchTitle (line 59) | public function fetchTitle(Embed $embed, Request $request): JsonResponse
    method fetchDuplicates (line 73) | public function fetchDuplicates(EntryRepository $repository, Request $...
    method fetchEmbed (line 89) | public function fetchEmbed(Embed $embed, Request $request): JsonResponse
    method fetchEntry (line 110) | public function fetchEntry(#[MapEntity(id: 'id')] Entry $entry, Reques...
    method fetchEntryComment (line 127) | public function fetchEntryComment(#[MapEntity(id: 'id')] EntryComment ...
    method fetchPost (line 146) | public function fetchPost(#[MapEntity(id: 'id')] Post $post): JsonResp...
    method fetchPostComment (line 163) | public function fetchPostComment(#[MapEntity(id: 'id')] PostComment $c...
    method fetchPostComments (line 180) | public function fetchPostComments(#[MapEntity(id: 'id')] Post $post, P...
    method fetchOnline (line 199) | public function fetchOnline(
    method fetchUserPopup (line 222) | public function fetchUserPopup(#[MapEntity(mapping: ['username' => 'us...
    method fetchUsersSuggestions (line 241) | public function fetchUsersSuggestions(string $username, Request $reque...
    method fetchEmojiSuggestions (line 255) | public function fetchEmojiSuggestions(#[MapQueryParameter] string $que...
    method fetchNotificationsCount (line 282) | #[IsGranted('ROLE_USER')]
    method registerPushNotifications (line 290) | public function registerPushNotifications(#[MapRequestPayload] Registe...
    method unregisterPushNotifications (line 322) | public function unregisterPushNotifications(#[MapRequestPayload] UnReg...
    method testPushNotification (line 343) | public function testPushNotification(#[MapRequestPayload] TestPushRequ...

FILE: src/Controller/Api/BaseApi.php
  class BaseApi (line 87) | class BaseApi extends AbstractController
    method __construct (line 98) | public function __construct(
    method rateLimit (line 145) | protected function rateLimit(
    method logAccess (line 186) | private function logAccess(): void
    method getOAuthToken (line 202) | public function getOAuthToken(): ?OAuth2Token
    method getAccessToken (line 221) | public function getAccessToken(?OAuth2Token $oAuth2Token): ?AccessToken
    method serializePaginated (line 232) | public function serializePaginated(array $serializedItems, PagerfantaI...
    method serializeCursorPaginated (line 240) | public function serializeCursorPaginated(array $serializedItems, Curso...
    method serializeContentInterface (line 248) | public function serializeContentInterface(ContentInterface $content, b...
    method serializeLogItem (line 287) | protected function serializeLogItem(MagazineLog $log): array
    method serializeMagazine (line 311) | protected function serializeMagazine(MagazineDto $dto): MagazineRespon...
    method serializeUser (line 329) | protected function serializeUser(UserDto $dto): UserResponseDto
    method serializeFilterList (line 340) | protected function serializeFilterList(UserFilterList $list): UserFilt...
    method constrainPerPage (line 345) | public static function constrainPerPage(mixed $value, int $min = self:...
    method constrainDepth (line 353) | public static function constrainDepth(mixed $value, int $min = self::M...
    method handleLanguageCriteria (line 358) | public function handleLanguageCriteria(Criteria $criteria): void
    method handleUploadedImage (line 380) | public function handleUploadedImage(): Image
    method handleUploadedImageOptional (line 393) | public function handleUploadedImageOptional(): ?Image
    method reportContent (line 434) | protected function reportContent(ReportInterface $reportable): void
    method serializeEntry (line 458) | protected function serializeEntry(EntryDto|Entry $dto, array $tags, ?a...
    method serializeEntryComment (line 482) | protected function serializeEntryComment(EntryCommentDto $comment, arr...
    method serializePost (line 501) | protected function serializePost(Post|PostDto $dto, array $tags): Post...
    method serializePostComment (line 524) | protected function serializePostComment(PostCommentDto $comment, array...

FILE: src/Controller/Api/Bookmark/BookmarkApiController.php
  class BookmarkApiController (line 21) | class BookmarkApiController extends BaseApi
    method subjectBookmarkStandard (line 23) | #[OA\Response(
    method subjectBookmarkToList (line 85) | #[OA\Response(
    method subjectRemoveBookmarkFromList (line 151) | #[OA\Response(
    method subjectRemoveBookmarks (line 217) | #[OA\Response(

FILE: src/Controller/Api/Bookmark/BookmarkListApiController.php
  class BookmarkListApiController (line 33) | class BookmarkListApiController extends BaseApi
    method front (line 35) | #[OA\Response(
    method list (line 173) | #[OA\Response(
    method makeDefault (line 222) | #[OA\Response(
    method editList (line 274) | #[OA\Response(
    method createList (line 327) | #[OA\Response(
    method deleteList (line 379) | #[OA\Response(

FILE: src/Controller/Api/Combined/CombinedRetrieveApi.php
  class CombinedRetrieveApi (line 35) | class CombinedRetrieveApi extends BaseApi
    method collection (line 39) | #[OA\Response(
    method userCollection (line 152) | #[OA\Response(
    method cursorCollection (line 274) | #[OA\Response(
    method cursorUserCollection (line 396) | #[OA\Response(
    method getCriteria (line 521) | private function getCriteria(?int $p, Security $security, ?string $sor...
    method serializeContent (line 551) | private function serializeContent(PagerfantaInterface $content, array ...
    method serializeContentCursored (line 573) | private function serializeContentCursored(CursorPaginationInterface $c...
    method getCursor (line 589) | private function getCursor(ContentRepository $contentRepository, strin...

FILE: src/Controller/Api/Domain/DomainBaseApi.php
  class DomainBaseApi (line 13) | class DomainBaseApi extends BaseApi
    method setFactory (line 17) | #[Required]
    method serializeDomain (line 26) | protected function serializeDomain(DomainDto|Domain $dto): DomainDto

FILE: src/Controller/Api/Domain/DomainBlockApi.php
  class DomainBlockApi (line 19) | class DomainBlockApi extends DomainBaseApi
    method block (line 21) | #[OA\Response(
    method unblock (line 77) | #[OA\Response(

FILE: src/Controller/Api/Domain/DomainRetrieveApi.php
  class DomainRetrieveApi (line 26) | class DomainRetrieveApi extends DomainBaseApi
    method __invoke (line 30) | #[OA\Response(
    method collection (line 84) | #[OA\Response(
    method subscribed (line 173) | #[OA\Response(
    method subscriptions (line 251) | #[OA\Response(
    method blocked (line 350) | #[OA\Response(

FILE: src/Controller/Api/Domain/DomainSubscribeApi.php
  class DomainSubscribeApi (line 19) | class DomainSubscribeApi extends DomainBaseApi
    method subscribe (line 21) | #[OA\Response(
    method unsubscribe (line 77) | #[OA\Response(

FILE: src/Controller/Api/Entry/Admin/EntriesChangeMagazineApi.php
  class EntriesChangeMagazineApi (line 21) | class EntriesChangeMagazineApi extends EntriesBaseApi
    method __invoke (line 23) | #[OA\Response(

FILE: src/Controller/Api/Entry/Admin/EntriesPurgeApi.php
  class EntriesPurgeApi (line 18) | class EntriesPurgeApi extends EntriesBaseApi
    method __invoke (line 20) | #[OA\Response(

FILE: src/Controller/Api/Entry/Comments/Admin/EntryCommentsPurgeApi.php
  class EntryCommentsPurgeApi (line 18) | class EntryCommentsPurgeApi extends EntriesBaseApi
    method __invoke (line 20) | #[OA\Response(

FILE: src/Controller/Api/Entry/Comments/DomainEntryCommentsRetrieveApi.php
  class DomainEntryCommentsRetrieveApi (line 24) | class DomainEntryCommentsRetrieveApi extends EntriesBaseApi
    method __invoke (line 28) | #[OA\Response(

FILE: src/Controller/Api/Entry/Comments/EntryCommentsActivityApi.php
  class EntryCommentsActivityApi (line 18) | class EntryCommentsActivityApi extends EntriesBaseApi
    method __invoke (line 22) | #[OA\Response(

FILE: src/Controller/Api/Entry/Comments/EntryCommentsCreateApi.php
  class EntryCommentsCreateApi (line 27) | class EntryCommentsCreateApi extends EntriesBaseApi
    method __invoke (line 31) | #[OA\Response(
    method uploadImage (line 131) | #[OA\Response(

FILE: src/Controller/Api/Entry/Comments/EntryCommentsDeleteApi.php
  class EntryCommentsDeleteApi (line 19) | class EntryCommentsDeleteApi extends EntriesBaseApi
    method __invoke (line 23) | #[OA\Response(

FILE: src/Controller/Api/Entry/Comments/EntryCommentsFavouriteApi.php
  class EntryCommentsFavouriteApi (line 20) | class EntryCommentsFavouriteApi extends EntriesBaseApi
    method __invoke (line 22) | #[OA\Response(

FILE: src/Controller/Api/Entry/Comments/EntryCommentsReportApi.php
  class EntryCommentsReportApi (line 19) | class EntryCommentsReportApi extends EntriesBaseApi
    method __invoke (line 23) | #[OA\Response(

FILE: src/Controller/Api/Entry/Comments/EntryCommentsRetrieveApi.php
  class EntryCommentsRetrieveApi (line 23) | class EntryCommentsRetrieveApi extends EntriesBaseApi
    method __invoke (line 27) | #[OA\Response(
    method single (line 176) | #[OA\Response(

FILE: src/Controller/Api/Entry/Comments/EntryCommentsUpdateApi.php
  class EntryCommentsUpdateApi (line 27) | class EntryCommentsUpdateApi extends EntriesBaseApi
    method __invoke (line 31) | #[OA\Response(

FILE: src/Controller/Api/Entry/Comments/EntryCommentsVoteApi.php
  class EntryCommentsVoteApi (line 24) | class EntryCommentsVoteApi extends EntriesBaseApi
    method __invoke (line 28) | #[OA\Response(

FILE: src/Controller/Api/Entry/Comments/Moderate/EntryCommentsSetAdultApi.php
  class EntryCommentsSetAdultApi (line 20) | class EntryCommentsSetAdultApi extends EntriesBaseApi
    method __invoke (line 22) | #[OA\Response(

FILE: src/Controller/Api/Entry/Comments/Moderate/EntryCommentsSetLanguageApi.php
  class EntryCommentsSetLanguageApi (line 22) | class EntryCommentsSetLanguageApi extends EntriesBaseApi
    method __invoke (line 24) | #[OA\Response(

FILE: src/Controller/Api/Entry/Comments/Moderate/EntryCommentsTrashApi.php
  class EntryCommentsTrashApi (line 22) | class EntryCommentsTrashApi extends EntriesBaseApi
    method trash (line 24) | #[OA\Response(
    method restore (line 94) | #[OA\Response(

FILE: src/Controller/Api/Entry/Comments/UserEntryCommentsRetrieveApi.php
  class UserEntryCommentsRetrieveApi (line 24) | class UserEntryCommentsRetrieveApi extends EntriesBaseApi
    method __invoke (line 28) | #[OA\Response(

FILE: src/Controller/Api/Entry/DomainEntriesRetrieveApi.php
  class DomainEntriesRetrieveApi (line 28) | class DomainEntriesRetrieveApi extends EntriesBaseApi
    method __invoke (line 32) | #[OA\Response(

FILE: src/Controller/Api/Entry/EntriesActivityApi.php
  class EntriesActivityApi (line 17) | class EntriesActivityApi extends EntriesBaseApi
    method __invoke (line 21) | #[OA\Response(

FILE: src/Controller/Api/Entry/EntriesBaseApi.php
  class EntriesBaseApi (line 24) | class EntriesBaseApi extends BaseApi
    method setCommentsFactory (line 28) | #[Required]
    method deserializeEntry (line 51) | protected function deserializeEntry(?EntryDto $dto = null, array $cont...
    method deserializeEntryFromForm (line 64) | protected function deserializeEntryFromForm(): EntryRequestDto
    method deserializeComment (line 96) | protected function deserializeComment(?EntryCommentDto $dto = null): E...
    method deserializeCommentFromForm (line 116) | protected function deserializeCommentFromForm(?EntryCommentDto $dto = ...
    method serializeCommentTree (line 138) | protected function serializeCommentTree(?EntryComment $comment, EntryC...
    method createEntry (line 158) | public function createEntry(Magazine $magazine, EntryManager $manager,...

FILE: src/Controller/Api/Entry/EntriesDeleteApi.php
  class EntriesDeleteApi (line 18) | class EntriesDeleteApi extends EntriesBaseApi
    method __invoke (line 20) | #[OA\Response(

FILE: src/Controller/Api/Entry/EntriesFavouriteApi.php
  class EntriesFavouriteApi (line 19) | class EntriesFavouriteApi extends EntriesBaseApi
    method __invoke (line 21) | #[OA\Response(

FILE: src/Controller/Api/Entry/EntriesReportApi.php
  class EntriesReportApi (line 18) | class EntriesReportApi extends EntriesBaseApi
    method __invoke (line 22) | #[OA\Response(

FILE: src/Controller/Api/Entry/EntriesRetrieveApi.php
  class EntriesRetrieveApi (line 31) | class EntriesRetrieveApi extends EntriesBaseApi
    method __invoke (line 35) | #[OA\Response(
    method collection (line 94) | #[OA\Response(
    method subscribed (line 231) | #[OA\Response(
    method moderated (line 353) | #[OA\Response(
    method favourited (line 475) | #[OA\Response(

FILE: src/Controller/Api/Entry/EntriesUpdateApi.php
  class EntriesUpdateApi (line 21) | class EntriesUpdateApi extends EntriesBaseApi
    method __invoke (line 23) | #[OA\Response(

FILE: src/Controller/Api/Entry/EntriesVoteApi.php
  class EntriesVoteApi (line 23) | class EntriesVoteApi extends EntriesBaseApi
    method __invoke (line 27) | #[OA\Response(

FILE: src/Controller/Api/Entry/MagazineEntriesRetrieveApi.php
  class MagazineEntriesRetrieveApi (line 28) | class MagazineEntriesRetrieveApi extends EntriesBaseApi
    method __invoke (line 32) | #[OA\Response(

FILE: src/Controller/Api/Entry/MagazineEntryCreateApi.php
  class MagazineEntryCreateApi (line 27) | class MagazineEntryCreateApi extends EntriesBaseApi
    method article (line 31) | #[OA\Post(deprecated: true)]
    method link (line 110) | #[OA\Post(deprecated: true)]
    method video (line 189) | #[OA\Post(deprecated: true)]
    method uploadImage (line 263) | #[OA\Post(deprecated: true)]
    method entry (line 370) | #[OA\Response(

FILE: src/Controller/Api/Entry/Moderate/EntriesLockApi.php
  class EntriesLockApi (line 24) | class EntriesLockApi extends EntriesBaseApi
    method __invoke (line 26) | #[OA\Response(

FILE: src/Controller/Api/Entry/Moderate/EntriesPinApi.php
  class EntriesPinApi (line 20) | class EntriesPinApi extends EntriesBaseApi
    method __invoke (line 22) | #[OA\Response(

FILE: src/Controller/Api/Entry/Moderate/EntriesSetAdultApi.php
  class EntriesSetAdultApi (line 20) | class EntriesSetAdultApi extends EntriesBaseApi
    method __invoke (line 22) | #[OA\Response(

FILE: src/Controller/Api/Entry/Moderate/EntriesSetLanguageApi.php
  class EntriesSetLanguageApi (line 22) | class EntriesSetLanguageApi extends EntriesBaseApi
    method __invoke (line 24) | #[OA\Response(

FILE: src/Controller/Api/Entry/Moderate/EntriesTrashApi.php
  class EntriesTrashApi (line 22) | class EntriesTrashApi extends EntriesBaseApi
    method trash (line 24) | #[OA\Response(
    method restore (line 96) | #[OA\Response(

FILE: src/Controller/Api/Entry/UserEntriesRetrieveApi.php
  class UserEntriesRetrieveApi (line 24) | class UserEntriesRetrieveApi extends EntriesBaseApi
    method __invoke (line 28) | #[OA\Response(

FILE: src/Controller/Api/EntryComments.php
  class EntryComments (line 16) | class EntryComments extends AbstractController
    method __construct (line 18) | public function __construct(
    method __invoke (line 26) | public function __invoke(Entry $entry)

FILE: src/Controller/Api/Instance/Admin/InstanceRetrieveSettingsApi.php
  class InstanceRetrieveSettingsApi (line 17) | class InstanceRetrieveSettingsApi extends InstanceBaseApi
    method __invoke (line 19) | #[OA\Response(

FILE: src/Controller/Api/Instance/Admin/InstanceUpdateFederationApi.php
  class InstanceUpdateFederationApi (line 30) | class InstanceUpdateFederationApi extends InstanceBaseApi
    method __invoke (line 32) | #[OA\Response(
    method banInstance (line 107) | #[OA\Response(
    method unbanInstance (line 161) | #[OA\Response(
    method allowInstance (line 219) | #[OA\Response(
    method denyInstance (line 273) | #[OA\Response(

FILE: src/Controller/Api/Instance/Admin/InstanceUpdatePagesApi.php
  class InstanceUpdatePagesApi (line 24) | class InstanceUpdatePagesApi extends InstanceBaseApi
    method __invoke (line 26) | #[OA\Response(

FILE: src/Controller/Api/Instance/Admin/InstanceUpdateSettingsApi.php
  class InstanceUpdateSettingsApi (line 24) | class InstanceUpdateSettingsApi extends InstanceBaseApi
    method __invoke (line 26) | #[OA\Response(

FILE: src/Controller/Api/Instance/InstanceBaseApi.php
  class InstanceBaseApi (line 9) | class InstanceBaseApi extends BaseApi

FILE: src/Controller/Api/Instance/InstanceDetailsApi.php
  class InstanceDetailsApi (line 24) | class InstanceDetailsApi extends InstanceBaseApi
    method __invoke (line 26) | #[OA\Response(
    method retrieveRemoteInstanceDetails (line 75) | #[OA\Response(

FILE: src/Controller/Api/Instance/InstanceModLogApi.php
  class InstanceModLogApi (line 17) | class InstanceModLogApi extends InstanceBaseApi
    method collection (line 19) | #[OA\Response(

FILE: src/Controller/Api/Instance/InstanceRetrieveFederationApi.php
  class InstanceRetrieveFederationApi (line 19) | class InstanceRetrieveFederationApi extends InstanceBaseApi
    method getDeFederated (line 21) | #[OA\Response(
    method getDeFederatedV2 (line 59) | #[OA\Response(
    method getFederated (line 98) | #[OA\Response(
    method getDead (line 138) | #[OA\Response(

FILE: src/Controller/Api/Instance/InstanceRetrieveInfoApi.php
  class InstanceRetrieveInfoApi (line 16) | class InstanceRetrieveInfoApi extends InstanceBaseApi
    method __invoke (line 18) | #[OA\Response(

FILE: src/Controller/Api/Instance/InstanceRetrieveStatsApi.php
  class InstanceRetrieveStatsApi (line 17) | class InstanceRetrieveStatsApi extends InstanceBaseApi
    method votes (line 19) | #[OA\Response(
    method content (line 140) | #[OA\Response(

FILE: src/Controller/Api/Magazine/Admin/MagazineAddBadgesApi.php
  class MagazineAddBadgesApi (line 24) | class MagazineAddBadgesApi extends MagazineBaseApi
    method __invoke (line 26) | #[OA\Response(

FILE: src/Controller/Api/Magazine/Admin/MagazineAddModeratorsApi.php
  class MagazineAddModeratorsApi (line 24) | class MagazineAddModeratorsApi extends MagazineBaseApi
    method __invoke (line 26) | #[OA\Response(

FILE: src/Controller/Api/Magazine/Admin/MagazineAddTagsApi.php
  class MagazineAddTagsApi (line 21) | class MagazineAddTagsApi extends MagazineBaseApi
    method __invoke (line 23) | #[OA\Response(

FILE: src/Controller/Api/Magazine/Admin/MagazineCreateApi.php
  class MagazineCreateApi (line 18) | class MagazineCreateApi extends MagazineBaseApi
    method __invoke (line 22) | #[OA\Response(

FILE: src/Controller/Api/Magazine/Admin/MagazineDeleteApi.php
  class MagazineDeleteApi (line 18) | class MagazineDeleteApi extends MagazineBaseApi
    method __invoke (line 20) | #[OA\Response(

FILE: src/Controller/Api/Magazine/Admin/MagazineDeleteBannerApi.php
  class MagazineDeleteBannerApi (line 19) | class MagazineDeleteBannerApi extends MagazineBaseApi
    method __invoke (line 21) | #[OA\Response(

FILE: src/Controller/Api/Magazine/Admin/MagazineDeleteIconApi.php
  class MagazineDeleteIconApi (line 19) | class MagazineDeleteIconApi extends MagazineBaseApi
    method __invoke (line 21) | #[OA\Response(

FILE: src/Controller/Api/Magazine/Admin/MagazinePurgeApi.php
  class MagazinePurgeApi (line 18) | class MagazinePurgeApi extends MagazineBaseApi
    method __invoke (line 20) | #[OA\Response(

FILE: src/Controller/Api/Magazine/Admin/MagazineRemoveBadgesApi.php
  class MagazineRemoveBadgesApi (line 22) | class MagazineRemoveBadgesApi extends MagazineBaseApi
    method __invoke (line 24) | #[OA\Response(

FILE: src/Controller/Api/Magazine/Admin/MagazineRemoveModeratorsApi.php
  class MagazineRemoveModeratorsApi (line 23) | class MagazineRemoveModeratorsApi extends MagazineBaseApi
    method __invoke (line 25) | #[OA\Response(

FILE: src/Controller/Api/Magazine/Admin/MagazineRemoveTagsApi.php
  class MagazineRemoveTagsApi (line 22) | class MagazineRemoveTagsApi extends MagazineBaseApi
    method __invoke (line 24) | #[OA\Response(

FILE: src/Controller/Api/Magazine/Admin/MagazineRetrieveStatsApi.php
  class MagazineRetrieveStatsApi (line 22) | class MagazineRetrieveStatsApi extends MagazineBaseApi
    method votes (line 24) | #[OA\Response(
    method content (line 170) | #[OA\Response(

FILE: src/Controller/Api/Magazine/Admin/MagazineUpdateApi.php
  class MagazineUpdateApi (line 25) | class MagazineUpdateApi extends MagazineBaseApi
    method __invoke (line 27) | #[OA\Response(

FILE: src/Controller/Api/Magazine/Admin/MagazineUpdateThemeApi.php
  class MagazineUpdateThemeApi (line 29) | class MagazineUpdateThemeApi extends MagazineBaseApi
    method __invoke (line 31) | #[OA\Response(
    method banner (line 133) | #[OA\Response(

FILE: src/Controller/Api/Magazine/MagazineBaseApi.php
  class MagazineBaseApi (line 20) | class MagazineBaseApi extends BaseApi
    method setReportFactory (line 25) | #[Required]
    method setManager (line 31) | #[Required]
    method serializeReport (line 37) | protected function serializeReport(Report $report)
    method deserializeMagazine (line 51) | protected function deserializeMagazine(?MagazineDto $dto = null): Maga...
    method deserializeThemeFromForm (line 60) | protected function deserializeThemeFromForm(MagazineThemeDto $dto): Ma...
    method createMagazine (line 71) | protected function createMagazine(?ImageDto $image = null): Magazine

FILE: src/Controller/Api/Magazine/MagazineBlockApi.php
  class MagazineBlockApi (line 19) | class MagazineBlockApi extends MagazineBaseApi
    method block (line 21) | #[OA\Response(
    method unblock (line 78) | #[OA\Response(

FILE: src/Controller/Api/Magazine/MagazineModLogApi.php
  class MagazineModLogApi (line 19) | class MagazineModLogApi extends MagazineBaseApi
    method collection (line 21) | #[OA\Response(

FILE: src/Controller/Api/Magazine/MagazineRetrieveApi.php
  class MagazineRetrieveApi (line 27) | class MagazineRetrieveApi extends MagazineBaseApi
    method __invoke (line 31) | #[OA\Response(
    method byName (line 85) | #[OA\Response(
    method collection (line 139) | #[OA\Response(
    method subscribed (line 255) | #[OA\Response(
    method subscriptions (line 334) | #[OA\Response(
    method moderated (line 435) | #[OA\Response(
    method blocked (line 514) | #[OA\Response(

FILE: src/Controller/Api/Magazine/MagazineRetrieveThemeApi.php
  class MagazineRetrieveThemeApi (line 16) | class MagazineRetrieveThemeApi extends MagazineBaseApi
    method __invoke (line 18) | #[OA\Response(

FILE: src/Controller/Api/Magazine/MagazineSubscribeApi.php
  class MagazineSubscribeApi (line 19) | class MagazineSubscribeApi extends MagazineBaseApi
    method subscribe (line 21) | #[OA\Response(
    method unsubscribe (line 78) | #[OA\Response(

FILE: src/Controller/Api/Magazine/Moderate/MagazineBansRetrieveApi.php
  class MagazineBansRetrieveApi (line 23) | class MagazineBansRetrieveApi extends MagazineBaseApi
    method collection (line 27) | #[OA\Response(

FILE: src/Controller/Api/Magazine/Moderate/MagazineModOwnerRequestApi.php
  class MagazineModOwnerRequestApi (line 24) | class MagazineModOwnerRequestApi extends MagazineBaseApi
    method toggleModRequest (line 26) | #[OA\Response(
    method acceptModRequest (line 86) | #[OA\Response(
    method rejectModRequest (line 152) | #[OA\Response(
    method getModRequests (line 218) | #[OA\Response(
    method toggleOwnerRequest (line 288) | #[OA\Response(
    method acceptOwnerRequest (line 348) | #[OA\Response(
    method rejectOwnerRequest (line 414) | #[OA\Response(
    method getOwnerRequests (line 480) | #[OA\Response(

FILE: src/Controller/Api/Magazine/Moderate/MagazineReportsAcceptApi.php
  class MagazineReportsAcceptApi (line 23) | class MagazineReportsAcceptApi extends MagazineBaseApi
    method __invoke (line 27) | #[OA\Response(

FILE: src/Controller/Api/Magazine/Moderate/MagazineReportsRejectApi.php
  class MagazineReportsRejectApi (line 22) | class MagazineReportsRejectApi extends MagazineBaseApi
    method __invoke (line 26) | #[OA\Response(

FILE: src/Controller/Api/Magazine/Moderate/MagazineReportsRetrieveApi.php
  class MagazineReportsRetrieveApi (line 24) | class MagazineReportsRetrieveApi extends MagazineBaseApi
    method __invoke (line 28) | #[OA\Response(
    method collection (line 98) | #[OA\Response(

FILE: src/Controller/Api/Magazine/Moderate/MagazineTrashedRetrieveApi.php
  class MagazineTrashedRetrieveApi (line 21) | class MagazineTrashedRetrieveApi extends MagazineBaseApi
    method collection (line 25) | #[OA\Response(

FILE: src/Controller/Api/Magazine/Moderate/MagazineUserBanApi.php
  class MagazineUserBanApi (line 25) | class MagazineUserBanApi extends MagazineBaseApi
    method ban (line 27) | #[OA\Response(
    method unban (line 124) | #[OA\Response(

FILE: src/Controller/Api/MagazineBadges.php
  class MagazineBadges (line 12) | class MagazineBadges extends AbstractController
    method __construct (line 14) | public function __construct(private readonly BadgeFactory $factory)
    method __invoke (line 18) | public function __invoke(Magazine $magazine)

FILE: src/Controller/Api/Message/MessageBaseApi.php
  class MessageBaseApi (line 14) | class MessageBaseApi extends BaseApi
    method setMessageFactory (line 22) | #[Required]
    method serializeMessage (line 35) | protected function serializeMessage(Message $message)
    method serializeMessageThread (line 49) | protected function serializeMessageThread(MessageThread $thread)
    method deserializeMessage (line 62) | protected function deserializeMessage(): MessageDto

FILE: src/Controller/Api/Message/MessageReadApi.php
  class MessageReadApi (line 19) | class MessageReadApi extends MessageBaseApi
    method read (line 21) | #[OA\Response(
    method unread (line 80) | #[OA\Response(

FILE: src/Controller/Api/Message/MessageRetrieveApi.php
  class MessageRetrieveApi (line 28) | class MessageRetrieveApi extends MessageBaseApi
    method __invoke (line 34) | #[OA\Response(
    method collection (line 94) | #[OA\Response(
    method thread (line 177) | #[OA\Response(

FILE: src/Controller/Api/Message/MessageThreadCreateApi.php
  class MessageThreadCreateApi (line 23) | class MessageThreadCreateApi extends MessageBaseApi
    method __invoke (line 27) | #[OA\Response(

FILE: src/Controller/Api/Message/MessageThreadReplyApi.php
  class MessageThreadReplyApi (line 22) | class MessageThreadReplyApi extends MessageBaseApi
    method __invoke (line 26) | #[OA\Response(

FILE: src/Controller/Api/Notification/NotificationBaseApi.php
  class NotificationBaseApi (line 25) | class NotificationBaseApi extends BaseApi
    method setMessageFactory (line 29) | #[Required]
    method serializeNotification (line 42) | protected function serializeNotification(Notification $dto)
    method createResponseDtoForReport (line 140) | private function createResponseDtoForReport(ReportInterface $subject):...

FILE: src/Controller/Api/Notification/NotificationPurgeApi.php
  class NotificationPurgeApi (line 18) | class NotificationPurgeApi extends NotificationBaseApi
    method purge (line 22) | #[OA\Response(
    method purgeAll (line 83) | #[OA\Response(

FILE: src/Controller/Api/Notification/NotificationPushApi.php
  class NotificationPushApi (line 29) | class NotificationPushApi extends NotificationBaseApi
    method createSubscription (line 33) | #[OA\Response(
    method deleteSubscription (line 111) | #[OA\Response(
    method testSubscription (line 178) | #[OA\Response(

FILE: src/Controller/Api/Notification/NotificationReadApi.php
  class NotificationReadApi (line 19) | class NotificationReadApi extends NotificationBaseApi
    method read (line 23) | #[OA\Response(
    method readAll (line 84) | #[OA\Response(
    method unread (line 136) | #[OA\Response(

FILE: src/Controller/Api/Notification/NotificationRetrieveApi.php
  class NotificationRetrieveApi (line 21) | class NotificationRetrieveApi extends NotificationBaseApi
    method __invoke (line 25) | #[OA\Response(
    method collection (line 83) | #[OA\Response(
    method count (line 183) | #[OA\Response(

FILE: src/Controller/Api/Notification/NotificationSettingApi.php
  class NotificationSettingApi (line 23) | class NotificationSettingApi extends NotificationBaseApi
    method update (line 27) | #[OA\Response(

FILE: src/Controller/Api/OAuth2/Admin/RetrieveClientApi.php
  class RetrieveClientApi (line 26) | class RetrieveClientApi extends BaseApi
    method __invoke (line 30) | #[OA\Response(
    method collection (line 90) | #[OA\Response(

FILE: src/Controller/Api/OAuth2/Admin/RetrieveClientStatsApi.php
  class RetrieveClientStatsApi (line 19) | class RetrieveClientStatsApi extends BaseApi
    method __invoke (line 21) | #[OA\Response(

FILE: src/Controller/Api/OAuth2/CreateClientApi.php
  class CreateClientApi (line 29) | class CreateClientApi extends BaseApi
    method __invoke (line 31) | #[OA\Response(
    method uploadImage (line 157) | #[OA\Response(
    method deserializeClientFromForm (line 293) | protected function deserializeClientFromForm(?OAuth2ClientDto $dto = n...

FILE: src/Controller/Api/OAuth2/DeleteClientApi.php
  class DeleteClientApi (line 20) | class DeleteClientApi extends BaseApi
    method __invoke (line 22) | #[OA\Response(

FILE: src/Controller/Api/OAuth2/RevokeTokenApi.php
  class RevokeTokenApi (line 17) | class RevokeTokenApi extends BaseApi
    method __invoke (line 19) | #[OA\Response(

FILE: src/Controller/Api/Post/Admin/PostsPurgeApi.php
  class PostsPurgeApi (line 18) | class PostsPurgeApi extends PostsBaseApi
    method __invoke (line 20) | #[OA\Response(

FILE: src/Controller/Api/Post/Comments/Admin/PostCommentsPurgeApi.php
  class PostCommentsPurgeApi (line 18) | class PostCommentsPurgeApi extends PostsBaseApi
    method __invoke (line 20) | #[OA\Response(

FILE: src/Controller/Api/Post/Comments/Moderate/PostCommentsSetAdultApi.php
  class PostCommentsSetAdultApi (line 20) | class PostCommentsSetAdultApi extends PostsBaseApi
    method __invoke (line 22) | #[OA\Response(

FILE: src/Controller/Api/Post/Comments/Moderate/PostCommentsSetLanguageApi.php
  class PostCommentsSetLanguageApi (line 22) | class PostCommentsSetLanguageApi extends PostsBaseApi
    method __invoke (line 24) | #[OA\Response(

FILE: src/Controller/Api/Post/Comments/Moderate/PostCommentsTrashApi.php
  class PostCommentsTrashApi (line 22) | class PostCommentsTrashApi extends PostsBaseApi
    method trash (line 24) | #[OA\Response(
    method restore (line 94) | #[OA\Response(

FILE: src/Controller/Api/Post/Comments/PostCommentsActivityApi.php
  class PostCommentsActivityApi (line 18) | class PostCommentsActivityApi extends PostsBaseApi
    method __invoke (line 22) | #[OA\Response(

FILE: src/Controller/Api/Post/Comments/PostCommentsCreateApi.php
  class PostCommentsCreateApi (line 27) | class PostCommentsCreateApi extends PostsBaseApi
    method __invoke (line 31) | #[OA\Response(
    method uploadImage (line 129) | #[OA\Response(

FILE: src/Controller/Api/Post/Comments/PostCommentsDeleteApi.php
  class PostCommentsDeleteApi (line 19) | class PostCommentsDeleteApi extends PostsBaseApi
    method __invoke (line 23) | #[OA\Response(

FILE: src/Controller/Api/Post/Comments/PostCommentsFavouriteApi.php
  class PostCommentsFavouriteApi (line 20) | class PostCommentsFavouriteApi extends PostsBaseApi
    method __invoke (line 22) | #[OA\Response(

FILE: src/Controller/Api/Post/Comments/PostCommentsReportApi.php
  class PostCommentsReportApi (line 19) | class PostCommentsReportApi extends PostsBaseApi
    method __invoke (line 23) | #[OA\Response(

FILE: src/Controller/Api/Post/Comments/PostCommentsRetrieveApi.php
  class PostCommentsRetrieveApi (line 23) | class PostCommentsRetrieveApi extends PostsBaseApi
    method __invoke (line 27) | #[OA\Response(
    method collection (line 91) | #[OA\Response(

FILE: src/Controller/Api/Post/Comments/PostCommentsUpdateApi.php
  class PostCommentsUpdateApi (line 27) | class PostCommentsUpdateApi extends PostsBaseApi
    method __invoke (line 31) | #[OA\Response(

FILE: src/Controller/Api/Post/Comments/PostCommentsVoteApi.php
  class PostCommentsVoteApi (line 23) | class PostCommentsVoteApi extends PostsBaseApi
    method __invoke (line 27) | #[OA\Response(

FILE: src/Controller/Api/Post/Comments/UserPostCommentsRetrieveApi.php
  class UserPostCommentsRetrieveApi (line 23) | class UserPostCommentsRetrieveApi extends PostsBaseApi
    method __invoke (line 27) | #[OA\Response(

FILE: src/Controller/Api/Post/Moderate/PostsLockApi.php
  class PostsLockApi (line 24) | class PostsLockApi extends PostsBaseApi
    method __invoke (line 26) | #[OA\Response(

FILE: src/Controller/Api/Post/Moderate/PostsPinApi.php
  class PostsPinApi (line 20) | class PostsPinApi extends PostsBaseApi
    method __invoke (line 22) | #[OA\Response(

FILE: src/Controller/Api/Post/Moderate/PostsSetAdultApi.php
  class PostsSetAdultApi (line 20) | class PostsSetAdultApi extends PostsBaseApi
    method __invoke (line 22) | #[OA\Response(

FILE: src/Controller/Api/Post/Moderate/PostsSetLanguageApi.php
  class PostsSetLanguageApi (line 22) | class PostsSetLanguageApi extends PostsBaseApi
    method __invoke (line 24) | #[OA\Response(

FILE: src/Controller/Api/Post/Moderate/PostsTrashApi.php
  class PostsTrashApi (line 22) | class PostsTrashApi extends PostsBaseApi
    method trash (line 24) | #[OA\Response(
    method restore (line 94) | #[OA\Response(

FILE: src/Controller/Api/Post/PostsActivityApi.php
  class PostsActivityApi (line 17) | class PostsActivityApi extends PostsBaseApi
    method __invoke (line 21) | #[OA\Response(

FILE: src/Controller/Api/Post/PostsBaseApi.php
  class PostsBaseApi (line 15) | class PostsBaseApi extends BaseApi
    method deserializePost (line 24) | protected function deserializePost(?PostDto $dto = null): PostDto
    method deserializePostFromForm (line 41) | protected function deserializePostFromForm(?PostDto $dto = null): PostDto
    method deserializePostComment (line 69) | protected function deserializePostComment(?PostCommentDto $dto = null)...
    method deserializePostCommentFromForm (line 86) | protected function deserializePostCommentFromForm(?PostCommentDto $dto...
    method serializePostCommentTree (line 107) | protected function serializePostCommentTree(?PostComment $comment, Pos...

FILE: src/Controller/Api/Post/PostsCreateApi.php
  class PostsCreateApi (line 26) | class PostsCreateApi extends PostsBaseApi
    method __invoke (line 30) | #[OA\Response(
    method uploadImage (line 119) | #[OA\Response(

FILE: src/Controller/Api/Post/PostsDeleteApi.php
  class PostsDeleteApi (line 18) | class PostsDeleteApi extends PostsBaseApi
    method __invoke (line 20) | #[OA\Response(

FILE: src/Controller/Api/Post/PostsFavouriteApi.php
  class PostsFavouriteApi (line 19) | class PostsFavouriteApi extends PostsBaseApi
    method __invoke (line 21) | #[OA\Response(

FILE: src/Controller/Api/Post/PostsReportApi.php
  class PostsReportApi (line 18) | class PostsReportApi extends PostsBaseApi
    method __invoke (line 22) | #[OA\Response(

FILE: src/Controller/Api/Post/PostsRetrieveApi.php
  class PostsRetrieveApi (line 34) | class PostsRetrieveApi extends PostsBaseApi
    method __invoke (line 38) | #[OA\Response(
    method collection (line 97) | #[OA\Response(
    method subscribed (line 223) | #[OA\Response(
    method subscribedWithBoosts (line 360) | #[OA\Response(
    method moderated (line 508) | #[OA\Response(
    method favourited (line 632) | #[OA\Response(
    method byMagazine (line 753) | #[OA\Response(

FILE: src/Controller/Api/Post/PostsUpdateApi.php
  class PostsUpdateApi (line 23) | class PostsUpdateApi extends PostsBaseApi
    method __invoke (line 25) | #[OA\Response(

FILE: src/Controller/Api/Post/PostsVoteApi.php
  class PostsVoteApi (line 22) | class PostsVoteApi extends PostsBaseApi
    method __invoke (line 26) | #[OA\Response(

FILE: src/Controller/Api/Post/UserPostsRetrieveApi.php
  class UserPostsRetrieveApi (line 24) | class UserPostsRetrieveApi extends PostsBaseApi
    method __invoke (line 28) | #[OA\Response(

FILE: src/Controller/Api/PostComments.php
  class PostComments (line 16) | class PostComments extends AbstractController
    method __construct (line 18) | public function __construct(
    method __invoke (line 26) | public function __invoke(Post $post)

FILE: src/Controller/Api/RandomMagazine.php
  class RandomMagazine (line 12) | class RandomMagazine extends AbstractController
    method __construct (line 16) | public function __construct(
    method __invoke (line 22) | public function __invoke()

FILE: src/Controller/Api/Search/SearchRetrieveApi.php
  class SearchRetrieveApi (line 33) | class SearchRetrieveApi extends BaseApi
    method searchV1 (line 37) | #[OA\Response(
    method searchV2 (line 211) | #[OA\Response(
    method federatedSearchAllowed (line 362) | private function federatedSearchAllowed(): bool
    method serializeItem (line 368) | private function serializeItem(object $item): ?SearchResponseDto

FILE: src/Controller/Api/User/Admin/UserApplicationApi.php
  class UserApplicationApi (line 26) | class UserApplicationApi extends UserBaseApi
    method retrieve (line 28) | #[OA\Response(
    method approve (line 103) | #[OA\Response(
    method reject (line 159) | #[OA\Response(

FILE: src/Controller/Api/User/Admin/UserBanApi.php
  class UserBanApi (line 20) | class UserBanApi extends UserBaseApi
    method ban (line 22) | #[OA\Response(
    method unban (line 88) | #[OA\Response(

FILE: src/Controller/Api/User/Admin/UserDeleteApi.php
  class UserDeleteApi (line 20) | class UserDeleteApi extends UserBaseApi
    method __invoke (line 22) | #[OA\Response(

FILE: src/Controller/Api/User/Admin/UserPurgeApi.php
  class UserPurgeApi (line 18) | class UserPurgeApi extends UserBaseApi
    method __invoke (line 20) | #[OA\Response(

FILE: src/Controller/Api/User/Admin/UserRetrieveBannedApi.php
  class UserRetrieveBannedApi (line 20) | class UserRetrieveBannedApi extends UserBaseApi
    method collection (line 22) | #[OA\Response(

FILE: src/Controller/Api/User/Admin/UserVerifyApi.php
  class UserVerifyApi (line 20) | class UserVerifyApi extends UserBaseApi
    method __invoke (line 22) | #[OA\Response(

FILE: src/Controller/Api/User/UserBaseApi.php
  class UserBaseApi (line 10) | class UserBaseApi extends BaseApi
    method deserializeUserSettings (line 19) | protected function deserializeUserSettings(UserSettingsDto $dto): User...

FILE: src/Controller/Api/User/UserBlockApi.php
  class UserBlockApi (line 20) | class UserBlockApi extends UserBaseApi
    method block (line 22) | #[OA\Response(
    method unblock (line 87) | #[OA\Response(

FILE: src/Controller/Api/User/UserContentApi.php
  class UserContentApi (line 26) | class UserContentApi extends UserBaseApi
    method getBoostedContent (line 30) | #[OA\Response(
    method getUserContent (line 102) | #[OA\Response(
    method checkUserAccess (line 182) | private function checkUserAccess(User $user)
    method serializeResults (line 190) | private function serializeResults(array $results): array

FILE: src/Controller/Api/User/UserDeleteImagesApi.php
  class UserDeleteImagesApi (line 18) | class UserDeleteImagesApi extends UserBaseApi
    method avatar (line 20) | #[OA\Response(
    method cover (line 68) | #[OA\Response(

FILE: src/Controller/Api/User/UserFilterListApi.php
  class UserFilterListApi (line 22) | class UserFilterListApi extends UserBaseApi
    method retrieve (line 24) | #[OA\Response(
    method create (line 73) | #[OA\Response(
    method edit (line 128) | #[OA\Response(
    method delete (line 181) | #[OA\Response(

FILE: src/Controller/Api/User/UserFollowApi.php
  class UserFollowApi (line 20) | class UserFollowApi extends UserBaseApi
    method follow (line 22) | #[OA\Response(
    method unfollow (line 88) | #[OA\Response(

FILE: src/Controller/Api/User/UserModeratesApi.php
  class UserModeratesApi (line 20) | class UserModeratesApi extends UserBaseApi
    method __invoke (line 22) | #[OA\Response(

FILE: src/Controller/Api/User/UserRetrieveApi.php
  class UserRetrieveApi (line 26) | class UserRetrieveApi extends UserBaseApi
    method __invoke (line 30) | #[OA\Response(
    method username (line 84) | #[OA\Response(
    method me (line 138) | #[OA\Response(
    method settings (line 181) | #[OA\Response(
    method collection (line 223) | #[OA\Response(
    method followed (line 325) | #[OA\Response(
    method followers (line 426) | #[OA\Response(
    method followedByCurrent (line 518) | #[OA\Response(
    method followersOfCurrent (line 607) | #[OA\Response(
    method blocked (line 691) | #[OA\Response(
    method admins (line 770) | #[OA\Response(
    method moderators (line 821) | #[OA\Response(

FILE: src/Controller/Api/User/UserRetrieveOAuthConsentsApi.php
  class UserRetrieveOAuthConsentsApi (line 23) | class UserRetrieveOAuthConsentsApi extends UserBaseApi
    method __invoke (line 27) | #[OA\Response(
    method collection (line 86) | #[OA\Response(

FILE: src/Controller/Api/User/UserUpdateApi.php
  class UserUpdateApi (line 22) | class UserUpdateApi extends UserBaseApi
    method profile (line 24) | #[OA\Response(
    method settings (line 83) | #[OA\Response(

FILE: src/Controller/Api/User/UserUpdateImagesApi.php
  class UserUpdateImagesApi (line 18) | class UserUpdateImagesApi extends UserBaseApi
    method avatar (line 20) | #[OA\Response(
    method cover (line 90) | #[OA\Response(

FILE: src/Controller/Api/User/UserUpdateOAuthConsentsApi.php
  class UserUpdateOAuthConsentsApi (line 21) | class UserUpdateOAuthConsentsApi extends UserBaseApi
    method __invoke (line 25) | #[OA\Response(

FILE: src/Controller/BookmarkController.php
  class BookmarkController (line 18) | class BookmarkController extends AbstractController
    method __construct (line 20) | public function __construct(
    method subjectBookmarkStandard (line 27) | #[IsGranted('ROLE_USER')]
    method subjectBookmarkRefresh (line 49) | #[IsGranted('ROLE_USER')]
    method subjectBookmarkToList (line 70) | #[IsGranted('ROLE_USER')]
    method subjectRemoveBookmarks (line 97) | #[IsGranted('ROLE_USER')]
    method subjectRemoveBookmarkFromList (line 119) | #[IsGranted('ROLE_USER')]

FILE: src/Controller/BookmarkListController.php
  class BookmarkListController (line 26) | class BookmarkListController extends AbstractController
    method __construct (line 28) | public function __construct(
    method front (line 38) | #[IsGranted('ROLE_USER')]
    method list (line 87) | #[IsGranted('ROLE_USER')]
    method subjectBookmarkMenuListRefresh (line 113) | #[IsGranted('ROLE_USER')]
    method makeDefault (line 137) | #[IsGranted('ROLE_USER')]
    method editList (line 150) | #[IsGranted('ROLE_USER')]
    method deleteList (line 170) | #[IsGranted('ROLE_USER')]

FILE: src/Controller/BoostController.php
  class BoostController (line 15) | class BoostController extends AbstractController
    method __construct (line 17) | public function __construct(
    method __invoke (line 23) | #[IsGranted('ROLE_USER')]

FILE: src/Controller/ContactController.php
  class ContactController (line 16) | class ContactController extends AbstractController
    method __construct (line 18) | public function __construct(
    method __invoke (line 23) | public function __invoke(SiteRepository $repository, ContactManager $m...

FILE: src/Controller/CrosspostController.php
  class CrosspostController (line 14) | class CrosspostController extends AbstractController
    method __construct (line 16) | public function __construct(
    method __invoke (line 21) | #[IsGranted('ROLE_USER')]

FILE: src/Controller/CustomStyleController.php
  class CustomStyleController (line 11) | class CustomStyleController extends AbstractController
    method __invoke (line 13) | public function __invoke(Request $request, MagazineRepository $reposit...
    method createResponse (line 25) | private function createResponse(Request $request, ?string $customCss):...

FILE: src/Controller/Domain/DomainBlockController.php
  class DomainBlockController (line 16) | class DomainBlockController extends AbstractController
    method __construct (line 18) | public function __construct(
    method block (line 23) | #[IsGranted('ROLE_USER')]
    method unblock (line 35) | #[IsGranted('ROLE_USER')]
    method getJsonResponse (line 47) | private function getJsonResponse(Domain $domain): JsonResponse

FILE: src/Controller/Domain/DomainCommentFrontController.php
  class DomainCommentFrontController (line 15) | class DomainCommentFrontController extends AbstractController
    method __construct (line 17) | public function __construct(
    method __invoke (line 24) | public function __invoke(string $name, ?string $sortBy, ?string $time,...

FILE: src/Controller/Domain/DomainFrontController.php
  class DomainFrontController (line 19) | class DomainFrontController extends AbstractController
    method __construct (line 21) | public function __construct(
    method __invoke (line 28) | public function __invoke(

FILE: src/Controller/Domain/DomainSubController.php
  class DomainSubController (line 16) | class DomainSubController extends AbstractController
    method __construct (line 18) | public function __construct(
    method subscribe (line 23) | #[IsGranted('ROLE_USER')]
    method unsubscribe (line 35) | #[IsGranted('ROLE_USER')]
    method getJsonResponse (line 47) | private function getJsonResponse(Domain $domain): JsonResponse

FILE: src/Controller/Entry/Comment/EntryCommentChangeAdultController.php
  class EntryCommentChangeAdultController (line 17) | class EntryCommentChangeAdultController extends AbstractController
    method __construct (line 19) | public function __construct(
    method __invoke (line 24) | #[IsGranted('moderate', subject: 'comment')]

FILE: src/Controller/Entry/Comment/EntryCommentChangeLangController.php
  class EntryCommentChangeLangController (line 17) | class EntryCommentChangeLangController extends AbstractController
    method __construct (line 19) | public function __construct(
    method __invoke (line 24) | #[IsGranted('moderate', subject: 'entry')]

FILE: src/Controller/Entry/Comment/EntryCommentCreateController.php
  class EntryCommentCreateController (line 27) | class EntryCommentCreateController extends AbstractController
    method __construct (line 31) | public function __construct(
    method __invoke (line 39) | #[IsGranted('ROLE_USER')]
    method getForm (line 98) | private function getForm(Entry $entry, ?EntryComment $parent = null): ...
    method handleValidRequest (line 142) | private function handleValidRequest(EntryCommentDto $dto, Request $req...

FILE: src/Controller/Entry/Comment/EntryCommentDeleteController.php
  class EntryCommentDeleteController (line 17) | class EntryCommentDeleteController extends AbstractController
    method __construct (line 19) | public function __construct(
    method delete (line 24) | #[IsGranted('ROLE_USER')]
    method restore (line 42) | #[IsGranted('ROLE_USER')]
    method purge (line 60) | #[IsGranted('ROLE_USER')]

FILE: src/Controller/Entry/Comment/EntryCommentDeleteImageController.php
  class EntryCommentDeleteImageController (line 18) | class EntryCommentDeleteImageController extends AbstractController
    method __construct (line 20) | public function __construct(
    method __invoke (line 25) | #[IsGranted('ROLE_USER')]

FILE: src/Controller/Entry/Comment/EntryCommentEditController.php
  class EntryCommentEditController (line 24) | class EntryCommentEditController extends AbstractController
    method __construct (line 28) | public function __construct(
    method __invoke (line 34) | #[IsGranted('ROLE_USER')]
    method getForm (line 80) | private function getForm(EntryCommentDto $dto, EntryComment $comment):...
    method handleValidRequest (line 98) | private function handleValidRequest(EntryCommentDto $dto, EntryComment...

FILE: src/Controller/Entry/Comment/EntryCommentFavouriteController.php
  class EntryCommentFavouriteController (line 15) | class EntryCommentFavouriteController extends AbstractController
    method __invoke (line 17) | public function __invoke(

FILE: src/Controller/Entry/Comment/EntryCommentFrontController.php
  class EntryCommentFrontController (line 18) | class EntryCommentFrontController extends AbstractController
    method __construct (line 20) | public function __construct(
    method front (line 26) | public function front(
    method subscribed (line 52) | #[IsGranted('ROLE_USER')]
    method moderated (line 70) | #[IsGranted('ROLE_USER')]
    method favourite (line 88) | #[IsGranted('ROLE_USER')]

FILE: src/Controller/Entry/Comment/EntryCommentModerateController.php
  class EntryCommentModerateController (line 18) | class EntryCommentModerateController extends AbstractController
    method __invoke (line 20) | #[IsGranted('moderate', subject: 'comment')]

FILE: src/Controller/Entry/Comment/EntryCommentResponseTrait.php
  type EntryCommentResponseTrait (line 19) | trait EntryCommentResponseTrait
    method getEntryCommentPageResponse (line 21) | private function getEntryCommentPageResponse(
    method getJsonCommentSuccessResponse (line 47) | private function getJsonCommentSuccessResponse(EntryComment $comment):...

FILE: src/Controller/Entry/Comment/EntryCommentViewController.php
  class EntryCommentViewController (line 23) | class EntryCommentViewController extends AbstractController
    method __construct (line 27) | public function __construct(
    method __invoke (line 35) | public function __invoke(

FILE: src/Controller/Entry/Comment/EntryCommentVotersController.php
  class EntryCommentVotersController (line 19) | class EntryCommentVotersController extends AbstractController
    method __construct (line 21) | public function __construct(
    method __invoke (line 26) | public function __invoke(

FILE: src/Controller/Entry/EntryChangeAdultController.php
  class EntryChangeAdultController (line 16) | class EntryChangeAdultController extends AbstractController
    method __construct (line 18) | public function __construct(
    method __invoke (line 23) | #[IsGranted('moderate', subject: 'entry')]

FILE: src/Controller/Entry/EntryChangeLangController.php
  class EntryChangeLangController (line 16) | class EntryChangeLangController extends AbstractController
    method __construct (line 18) | public function __construct(
    method __invoke (line 23) | #[IsGranted('moderate', subject: 'entry')]

FILE: src/Controller/Entry/EntryChangeMagazineController.php
  class EntryChangeMagazineController (line 17) | class EntryChangeMagazineController extends AbstractController
    method __construct (line 19) | public function __construct(
    method __invoke (line 25) | #[IsGranted('moderate', subject: 'entry')]

FILE: src/Controller/Entry/EntryCreateController.php
  class EntryCreateController (line 36) | class EntryCreateController extends AbstractController
    method __construct (line 40) | public function __construct(
    method __invoke (line 59) | #[IsGranted('ROLE_USER')]
    method showFailure (line 177) | private function showFailure(string $flashMessage, int $httpCode, ?Mag...

FILE: src/Controller/Entry/EntryDeleteController.php
  class EntryDeleteController (line 16) | class EntryDeleteController extends AbstractController
    method __construct (line 18) | public function __construct(
    method delete (line 23) | #[IsGranted('ROLE_USER')]
    method restore (line 44) | #[IsGranted('ROLE_USER')]
    method purge (line 60) | #[IsGranted('ROLE_USER')]

FILE: src/Controller/Entry/EntryDeleteImageController.php
  class EntryDeleteImageController (line 17) | class EntryDeleteImageController extends AbstractController
    method __construct (line 19) | public function __construct(
    method __invoke (line 24) | #[IsGranted('ROLE_USER')]

FILE: src/Controller/Entry/EntryEditController.php
  class EntryEditController (line 21) | class EntryEditController extends AbstractController
    method __construct (line 25) | public function __construct(
    method __invoke (line 32) | #[IsGranted('ROLE_USER')]

FILE: src/Controller/Entry/EntryFavouriteController.php
  class EntryFavouriteController (line 14) | class EntryFavouriteController extends AbstractController
    method __invoke (line 16) | public function __invoke(

FILE: src/Controller/Entry/EntryFrontController.php
  class EntryFrontController (line 27) | class EntryFrontController extends AbstractController
    method __construct (line 29) | public function __construct(
    method front (line 37) | public function front(
    method frontRedirect (line 80) | public function frontRedirect(
    method magazine (line 102) | public function magazine(
    method magazineRedirect (line 152) | public function magazineRedirect(
    method createCriteria (line 175) | private function createCriteria(string $content, Request $request, ?Us...
    method handleSubscription (line 192) | private function handleSubscription(string $subscription, &$criteria)
    method setUserPreferences (line 210) | private function setUserPreferences(?User $user, Criteria &$criteria):...
    method renderResponse (line 223) | private function renderResponse(Request $request, Criteria $criteria, ...
    method subscriptionFor (line 253) | private function subscriptionFor(?User $user): string
    method handleCrossposts (line 267) | private function handleCrossposts($pagination): PagerfantaInterface
    method getCursorByCriteria (line 320) | private function getCursorByCriteria(string $sortOption, ?string $curs...

FILE: src/Controller/Entry/EntryLockController.php
  class EntryLockController (line 16) | class EntryLockController extends AbstractController
    method __construct (line 18) | public function __construct(
    method __invoke (line 23) | #[IsGranted('ROLE_USER')]

FILE: src/Controller/Entry/EntryModerateController.php
  class EntryModerateController (line 17) | class EntryModerateController extends AbstractController
    method __invoke (line 19) | #[IsGranted('ROLE_USER')]

FILE: src/Controller/Entry/EntryPinController.php
  class EntryPinController (line 16) | class EntryPinController extends AbstractController
    method __construct (line 18) | public function __construct(
    method __invoke (line 23) | #[IsGranted('ROLE_USER')]

FILE: src/Controller/Entry/EntrySingleController.php
  class EntrySingleController (line 30) | class EntrySingleController extends AbstractController
    method __construct (line 34) | public function __construct(
    method __invoke (line 45) | public function __invoke(
    method getJsonResponse (line 129) | private function getJsonResponse(Magazine $magazine, Entry $entry, Pag...

FILE: src/Controller/Entry/EntryTemplateTrait.php
  type EntryTemplateTrait (line 7) | trait EntryTemplateTrait
    method getTemplateName (line 9) | private function getTemplateName(?bool $edit = false): string

FILE: src/Controller/Entry/EntryVotersController.php
  class EntryVotersController (line 17) | class EntryVotersController extends AbstractController
    method __construct (line 19) | public function __construct(
    method __invoke (line 24) | public function __invoke(

FILE: src/Controller/FaqController.php
  class FaqController (line 12) | class FaqController extends AbstractController
    method __invoke (line 14) | public function __invoke(SettingsManager $settings, SiteRepository $re...

FILE: src/Controller/FavouriteController.php
  class FavouriteController (line 15) | class FavouriteController extends AbstractController
    method __construct (line 17) | public function __construct(private readonly GenerateHtmlClassService ...
    method __invoke (line 21) | #[IsGranted('ROLE_USER')]

FILE: src/Controller/FederationController.php
  class FederationController (line 12) | class FederationController extends AbstractController
    method __invoke (line 14) | public function __invoke(InstanceRepository $instanceRepository, Setti...

FILE: src/Controller/Magazine/MagazineAbandonedController.php
  class MagazineAbandonedController (line 12) | class MagazineAbandonedController extends AbstractController
    method __construct (line 14) | public function __construct(
    method __invoke (line 19) | public function __invoke(Request $request): Response

FILE: src/Controller/Magazine/MagazineBlockController.php
  class MagazineBlockController (line 16) | class MagazineBlockController extends AbstractController
    method __construct (line 18) | public function __construct(private readonly MagazineManager $manager)
    method block (line 22) | #[IsGranted('ROLE_USER')]
    method unblock (line 35) | #[IsGranted('ROLE_USER')]
    method getJsonResponse (line 48) | private function getJsonResponse(Magazine $magazine): JsonResponse

FILE: src/Controller/Magazine/MagazineCreateController.php
  class MagazineCreateController (line 17) | class MagazineCreateController extends AbstractController
    method __construct (line 19) | public function __construct(
    method __invoke (line 26) | #[IsGranted('ROLE_USER')]

FILE: src/Controller/Magazine/MagazineDeleteController.php
  class MagazineDeleteController (line 15) | class MagazineDeleteController extends AbstractController
    method __construct (line 17) | public function __construct(private readonly MagazineManager $manager)
    method delete (line 21) | #[IsGranted('ROLE_USER')]
    method restore (line 32) | #[IsGranted('ROLE_USER')]
    method purge (line 43) | #[IsGranted('ROLE_USER')]
    method purgeContent (line 54) | #[IsGranted('ROLE_USER')]

FILE: src/Controller/Magazine/MagazineListController.php
  class MagazineListController (line 17) | class MagazineListController extends AbstractController
    method __construct (line 19) | public function __construct(
    method __invoke (line 25) | public function __invoke(string $sortBy, string $view, Request $reques...

FILE: src/Controller/Magazine/MagazineModController.php
  class MagazineModController (line 14) | class MagazineModController extends AbstractController
    method __invoke (line 16) | public function __invoke(

FILE: src/Controller/Magazine/MagazineModeratorRequestController.php
  class MagazineModeratorRequestController (line 16) | class MagazineModeratorRequestController extends AbstractController
    method __construct (line 18) | public function __construct(private readonly MagazineManager $manager)
    method __invoke (line 22) | #[IsGranted('ROLE_USER')]

FILE: src/Controller/Magazine/MagazineOwnershipRequestController.php
  class MagazineOwnershipRequestController (line 16) | class MagazineOwnershipRequestController extends AbstractController
    method __construct (line 18) | public function __construct(private readonly MagazineManager $manager)
    method toggle (line 22) | #[IsGranted('ROLE_USER')]
    method accept (line 38) | #[IsGranted('ROLE_ADMIN')]

FILE: src/Controller/Magazine/MagazinePeopleFrontController.php
  class MagazinePeopleFrontController (line 15) | class MagazinePeopleFrontController extends AbstractController
    method __construct (line 17) | public function __construct(
    method __invoke (line 23) | public function __invoke(

FILE: src/Controller/Magazine/MagazineRemoveSubscriptionsController.php
  class MagazineRemoveSubscriptionsController (line 15) | class MagazineRemoveSubscriptionsController extends AbstractController
    method __construct (line 17) | public function __construct(private readonly MagazineManager $manager)
    method __invoke (line 21) | #[IsGranted('ROLE_ADMIN')]

FILE: src/Controller/Magazine/MagazineSubController.php
  class MagazineSubController (line 16) | class MagazineSubController extends AbstractController
    method __construct (line 18) | public function __construct(private readonly MagazineManager $manager)
    method subscribe (line 22) | #[IsGranted('ROLE_USER')]
    method unsubscribe (line 35) | #[IsGranted('ROLE_USER')]
    method getJsonResponse (line 48) | private function getJsonResponse(Magazine $magazine): JsonResponse

FILE: src/Controller/Magazine/Panel/MagazineBadgeController.php
  class MagazineBadgeController (line 19) | class MagazineBadgeController extends AbstractController
    method __construct (line 21) | public function __construct(
    method badges (line 26) | #[IsGranted('ROLE_USER')]
    method remove (line 58) | #[IsGranted('ROLE_USER')]

FILE: src/Controller/Magazine/Panel/MagazineBanController.php
  class MagazineBanController (line 20) | class MagazineBanController extends AbstractController
    method __construct (line 22) | public function __construct(
    method bans (line 29) | #[IsGranted('ROLE_USER')]
    method ban (line 46) | #[IsGranted('ROLE_USER')]
    method unban (line 78) | #[IsGranted('ROLE_USER')]

FILE: src/Controller/Magazine/Panel/MagazineEditController.php
  class MagazineEditController (line 16) | class MagazineEditController extends AbstractController
    method __construct (line 18) | public function __construct(
    method __invoke (line 23) | #[IsGranted('ROLE_USER')]

FILE: src/Controller/Magazine/Panel/MagazineModeratorController.php
  class MagazineModeratorController (line 19) | class MagazineModeratorController extends AbstractController
    method __construct (line 21) | public function __construct(
    method moderators (line 27) | #[IsGranted('ROLE_USER')]
    method remove (line 56) | #[IsGranted('ROLE_USER')]

FILE: src/Controller/Magazine/Panel/MagazineModeratorRequestsController.php
  class MagazineModeratorRequestsController (line 17) | class MagazineModeratorRequestsController extends AbstractController
    method __construct (line 19) | public function __construct(
    method requests (line 25) | #[IsGranted('edit', subject: 'magazine')]
    method accept (line 37) | #[IsGranted('ROLE_USER')]
    method reject (line 53) | #[IsGranted('ROLE_USER')]

FILE: src/Controller/Magazine/Panel/MagazineReportController.php
  class MagazineReportController (line 18) | class MagazineReportController extends AbstractController
    method __construct (line 20) | public function __construct(
    method reports (line 27) | #[IsGranted('ROLE_USER')]
    method reportApprove (line 47) | #[IsGranted('ROLE_USER')]
    method reportReject (line 63) | #[IsGranted('ROLE_USER')]

FILE: src/Controller/Magazine/Panel/MagazineStatsController.php
  class MagazineStatsController (line 16) | class MagazineStatsController extends AbstractController
    method __construct (line 18) | public function __construct(private readonly StatsManager $manager)
    method __invoke (line 22) | #[IsGranted('ROLE_USER')]

FILE: src/Controller/Magazine/Panel/MagazineTagController.php
  class MagazineTagController (line 17) | class MagazineTagController extends AbstractController
    method __construct (line 19) | public function __construct(
    method __invoke (line 24) | #[IsGranted('ROLE_USER')]

FILE: src/Controller/Magazine/Panel/MagazineThemeController.php
  class MagazineThemeController (line 17) | class MagazineThemeController extends AbstractController
    method __construct (line 19) | public function __construct(private readonly MagazineManager $manager)
    method __invoke (line 23) | #[IsGranted('ROLE_USER')]
    method detachIcon (line 58) | #[IsGranted('ROLE_USER')]
    method detachBanner (line 68) | #[IsGranted('ROLE_USER')]

FILE: src/Controller/Magazine/Panel/MagazineTrashController.php
  class MagazineTrashController (line 16) | class MagazineTrashController extends AbstractController
    method __construct (line 18) | public function __construct(private readonly MagazineRepository $repos...
    method __invoke (line 22) | #[IsGranted('ROLE_USER')]

FILE: src/Controller/Message/MessageCreateThreadController.php
  class MessageCreateThreadController (line 17) | class MessageCreateThreadController extends AbstractController
    method __construct (line 19) | public function __construct(
    method __invoke (line 25) | #[IsGranted('ROLE_USER')]

FILE: src/Controller/Message/MessageThreadController.php
  class MessageThreadController (line 16) | class MessageThreadController extends AbstractController
    method __construct (line 18) | public function __construct(private readonly MessageManager $manager)
    method __invoke (line 22) | #[IsGranted('ROLE_USER')]

FILE: src/Controller/Message/MessageThreadListController.php
  class MessageThreadListController (line 13) | class MessageThreadListController extends AbstractController
    method __invoke (line 15) | #[IsGranted('ROLE_USER')]

FILE: src/Controller/ModlogController.php
  class ModlogController (line 15) | class ModlogController extends AbstractController
    method __construct (line 17) | public function __construct(
    method instance (line 22) | public function instance(Request $request): Response
    method magazine (line 49) | public function magazine(#[MapEntity] ?Magazine $magazine, Request $re...

FILE: src/Controller/NotificationSettingsController.php
  class NotificationSettingsController (line 19) | class NotificationSettingsController extends AbstractController
    method __construct (line 21) | public function __construct(
    method changeSetting (line 27) | #[IsGranted('ROLE_USER')]
    method GetClassFromSubjectType (line 49) | protected static function GetClassFromSubjectType(string $subjectType)...

FILE: src/Controller/People/PeopleFrontController.php
  class PeopleFrontController (line 13) | class PeopleFrontController extends AbstractController
    method __construct (line 15) | public function __construct(private readonly PeopleManager $manager, p...
    method __invoke (line 19) | public function __invoke(?string $category, Request $request): Response

FILE: src/Controller/Post/Comment/PostCommentChangeAdultController.php
  class PostCommentChangeAdultController (line 17) | class PostCommentChangeAdultController extends AbstractController
    method __construct (line 19) | public function __construct(
    method __invoke (line 24) | #[IsGranted('moderate', subject: 'comment')]

FILE: src/Controller/Post/Comment/PostCommentChangeLangController.php
  class PostCommentChangeLangController (line 17) | class PostCommentChangeLangController extends AbstractController
    method __construct (line 19) | public function __construct(
    method __invoke (line 24) | #[IsGranted('moderate', subject: 'comment')]

FILE: src/Controller/Post/Comment/PostCommentCreateController.php
  class PostCommentCreateController (line 29) | class PostCommentCreateController extends AbstractController
    method __construct (line 33) | public function __construct(
    method __invoke (line 42) | #[IsGranted('ROLE_USER')]
    method getForm (line 106) | private function getForm(Post $post, ?PostComment $parent): FormInterface
    method handleValidRequest (line 157) | private function handleValidRequest(PostCommentDto $dto, Request $requ...

FILE: src/Controller/Post/Comment/PostCommentDeleteController.php
  class PostCommentDeleteController (line 16) | class PostCommentDeleteController extends AbstractController
    method __construct (line 18) | public function __construct(private readonly PostCommentManager $manager)
    method delete (line 22) | #[IsGranted('ROLE_USER')]
    method restore (line 38) | #[IsGranted('ROLE_USER')]
    method purge (line 54) | #[IsGranted('ROLE_USER')]

FILE: src/Controller/Post/Comment/PostCommentDeleteImageController.php
  class PostCommentDeleteImageController (line 17) | class PostCommentDeleteImageController extends AbstractController
    method __construct (line 19) | public function __construct(
    method __invoke (line 24) | #[IsGranted('ROLE_USER')]

FILE: src/Controller/Post/Comment/PostCommentEditController.php
  class PostCommentEditController (line 24) | class PostCommentEditController extends AbstractController
    method __construct (line 28) | public function __construct(
    method __invoke (line 35) | #[IsGranted('ROLE_USER')]
    method getCreateForm (line 91) | private function getCreateForm(PostCommentDto $dto, PostComment $comme...
    method handleValidRequest (line 109) | private function handleValidRequest(PostCommentDto $dto, PostComment $...

FILE: src/Controller/Post/Comment/PostCommentFavouriteController.php
  class PostCommentFavouriteController (line 15) | class PostCommentFavouriteController extends AbstractController
    method __invoke (line 17) | public function __invoke(

FILE: src/Controller/Post/Comment/PostCommentModerateController.php
  class PostCommentModerateController (line 18) | class PostCommentModerateController extends AbstractController
    method __invoke (line 20) | #[IsGranted('ROLE_USER')]

FILE: src/Controller/Post/Comment/PostCommentResponseTrait.php
  type PostCommentResponseTrait (line 11) | trait PostCommentResponseTrait
    method getPostCommentJsonSuccessResponse (line 13) | private function getPostCommentJsonSuccessResponse(PostComment $commen...

FILE: src/Controller/Post/Comment/PostCommentVotersController.php
  class PostCommentVotersController (line 16) | class PostCommentVotersController extends AbstractController
    method __invoke (line 18) | public function __invoke(

FILE: src/Controller/Post/PostChangeAdultController.php
  class PostChangeAdultController (line 16) | class PostChangeAdultController extends AbstractController
    method __construct (line 18) | public function __construct(private readonly EntityManagerInterface $e...
    method __invoke (line 22) | #[IsGranted('moderate', 'post')]

FILE: src/Controller/Post/PostChangeLangController.php
  class PostChangeLangController (line 16) | class PostChangeLangController extends AbstractController
    method __construct (line 18) | public function __construct(private readonly EntityManagerInterface $e...
    method __invoke (line 22) | #[IsGranted('moderate', 'post')]

FILE: src/Controller/Post/PostChangeMagazineController.php
  class PostChangeMagazineController (line 17) | class PostChangeMagazineController extends AbstractController
    method __construct (line 19) | public function __construct(
    method __invoke (line 25) | #[IsGranted('moderate', 'post')]

FILE: src/Controller/Post/PostCreateController.php
  class PostCreateController (line 21) | class PostCreateController extends AbstractController
    method __construct (line 23) | public function __construct(
    method __invoke (line 31) | #[IsGranted('ROLE_USER')]

FILE: src/Controller/Post/PostDeleteController.php
  class PostDeleteController (line 16) | class PostDeleteController extends AbstractController
    method __construct (line 18) | public function __construct(private readonly PostManager $manager)
    method delete (line 22) | #[IsGranted('ROLE_USER')]
    method restore (line 36) | #[IsGranted('ROLE_USER')]
    method purge (line 50) | #[IsGranted('ROLE_USER')]

FILE: src/Controller/Post/PostDeleteImageController.php
  class PostDeleteImageController (line 17) | class PostDeleteImageController extends AbstractController
    method __construct (line 19) | public function __construct(private readonly PostManager $manager)
    method __invoke (line 23) | #[IsGranted('ROLE_USER')]

FILE: src/Controller/Post/PostEditController.php
  class PostEditController (line 22) | class PostEditController extends AbstractController
    method __construct (line 24) | public function __construct(
    method __invoke (line 30) | #[IsGranted('ROLE_USER')]

FILE: src/Controller/Post/PostFavouriteController.php
  class PostFavouriteController (line 14) | class PostFavouriteController extends AbstractController
    method __invoke (line 16) | public function __invoke(

FILE: src/Controller/Post/PostLockController.php
  class PostLockController (line 16) | class PostLockController extends AbstractController
    method __construct (line 18) | public function __construct(
    method __invoke (line 23) | #[IsGranted('ROLE_USER')]

FILE: src/Controller/Post/PostModerateController.php
  class PostModerateController (line 18) | class PostModerateController extends AbstractController
    method __invoke (line 20) | #[IsGranted('ROLE_USER')]

FILE: src/Controller/Post/PostPinController.php
  class PostPinController (line 16) | class PostPinController extends AbstractController
    method __construct (line 18) | public function __construct(
    method __invoke (line 23) | #[IsGranted('ROLE_USER')]

FILE: src/Controller/Post/PostSingleController.php
  class PostSingleController (line 28) | class PostSingleController extends AbstractController
    method __construct (line 32) | public function __construct(
    method __invoke (line 41) | public function __invoke(
    method getJsonResponse (line 122) | private function getJsonResponse(Magazine $magazine, Post $post, Pager...

FILE: src/Controller/Post/PostVotersController.php
  class PostVotersController (line 17) | class PostVotersController extends AbstractController
    method __invoke (line 19) | public function __invoke(

FILE: src/Controller/PrivacyPolicyController.php
  class PrivacyPolicyController (line 12) | class PrivacyPolicyController extends AbstractController
    method __invoke (line 14) | public function __invoke(SettingsManager $settings, SiteRepository $re...

FILE: src/Controller/ReportController.php
  class ReportController (line 19) | class ReportController extends AbstractController
    method __construct (line 21) | public function __construct(
    method __invoke (line 27) | #[IsGranted('ROLE_USER')]
    method getForm (line 53) | private function getForm(ReportDto $dto, ReportInterface $subject): Fo...
    method handleReportRequest (line 64) | private function handleReportRequest(ReportDto $dto, Request $request)...

FILE: src/Controller/SearchController.php
  class SearchController (line 16) | class SearchController extends AbstractController
    method __construct (line 18) | public function __construct(
    method __invoke (line 25) | public function __invoke(Request $request): Response
    method federatedSearchAllowed (line 82) | private function federatedSearchAllowed(): bool
    method findObjectsByAp (line 88) | private function findObjectsByAp(string $urlOrHandle): array

FILE: src/Controller/Security/AuthentikController.php
  class AuthentikController (line 12) | class AuthentikController extends AbstractController
    method connect (line 14) | public function connect(ClientRegistry $clientRegistry): Response
    method verify (line 25) | public function verify(Request $request, ClientRegistry $client)

FILE: src/Controller/Security/AzureController.php
  class AzureController (line 12) | class AzureController extends AbstractController
    method connect (line 14) | public function connect(ClientRegistry $clientRegistry): Response
    method verify (line 23) | public function verify(Request $request, ClientRegistry $client)

FILE: src/Controller/Security/DiscordController.php
  class DiscordController (line 12) | class DiscordController extends AbstractController
    method connect (line 14) | public function connect(ClientRegistry $clientRegistry): Response
    method verify (line 21) | public function verify(Request $request, ClientRegistry $client)

FILE: src/Controller/Security/FacebookController.php
  class FacebookController (line 12) | class FacebookController extends AbstractController
    method connect (line 14) | public function connect(ClientRegistry $clientRegistry): Response
    method verify (line 24) | public function verify(Request $request, ClientRegistry $client)

FILE: src/Controller/Security/GithubController.php
  class GithubController (line 12) | class GithubController extends AbstractController
    method connect (line 14) | public function connect(ClientRegistry $clientRegistry): Response
    method verify (line 26) | public function verify(Request $request, ClientRegistry $client)

FILE: src/Controller/Security/GoogleController.php
  class GoogleController (line 12) | class GoogleController extends AbstractController
    method connect (line 14) | public function connect(ClientRegistry $clientRegistry): Response
    method verify (line 21) | public function verify(Request $request, ClientRegistry $client)

FILE: src/Controller/Security/KeycloakController.php
  class KeycloakController (line 12) | class KeycloakController extends AbstractController
    method connect (line 14) | public function connect(ClientRegistry $clientRegistry): Response
    method verify (line 26) | public function verify(Request $request, ClientRegistry $client)

FILE: src/Controller/Security/LoginController.php
  class LoginController (line 16) | class LoginController extends AbstractController
    method __invoke (line 18) | public function __invoke(AuthenticationUtils $utils, Request $request)...
    method consent (line 30) | public function consent(Request $request, EntityManagerInterface $enti...

FILE: src/Controller/Security/LogoutController.php
  class LogoutController (line 9) | class LogoutController extends AbstractController
    method __invoke (line 11) | public function __invoke()

FILE: src/Controller/Security/PrivacyPortalController.php
  class PrivacyPortalController (line 12) | class PrivacyPortalController extends AbstractController
    method connect (line 14) | public function connect(ClientRegistry $clientRegistry): Response
    method verify (line 25) | public function verify(Request $request, ClientRegistry $client)

FILE: src/Controller/Security/RegisterController.php
  class RegisterController (line 17) | class RegisterController extends AbstractController
    method __construct (line 19) | public function __construct(
    method __invoke (line 27) | public function __invoke(Request $request): Response

FILE: src/Controller/Security/ResendActivationEmailController.php
  class ResendActivationEmailController (line 16) | class ResendActivationEmailController extends AbstractController
    method __construct (line 18) | public function __construct(
    method resend (line 24) | public function resend(Request $request, SentUserConfirmationEmailHand...

FILE: src/Controller/Security/ResetPasswordController.php
  class ResetPasswordController (line 25) | class ResetPasswordController extends AbstractController
    method __construct (line 29) | public function __construct(
    method request (line 36) | public function request(Request $request, MailerInterface $mailer, Tra...
    method processSendingPasswordResetEmail (line 54) | private function processSendingPasswordResetEmail(
    method checkEmail (line 101) | public function checkEmail(): Response
    method reset (line 114) | public function reset(

FILE: src/Controller/Security/SimpleLoginController.php
  class SimpleLoginController (line 12) | class SimpleLoginController extends AbstractController
    method connect (line 14) | public function connect(ClientRegistry $clientRegistry): Response
    method verify (line 25) | public function verify(Request $request, ClientRegistry $client)

FILE: src/Controller/Security/VerifyEmailController.php
  class VerifyEmailController (line 14) | class VerifyEmailController extends AbstractController
    method __invoke (line 16) | public function __invoke(Request $request, UserRepository $repository,...

FILE: src/Controller/Security/ZitadelController.php
  class ZitadelController (line 12) | class ZitadelController extends AbstractController
    method connect (line 14) | public function connect(ClientRegistry $clientRegistry): Response
    method verify (line 25) | public function verify(Request $request, ClientRegistry $client)

FILE: src/Controller/StatsController.php
  class StatsController (line 13) | class StatsController extends AbstractController
    method __construct (line 15) | public function __construct(private readonly InstanceStatsManager $cou...
    method __invoke (line 19) | public function __invoke(?string $statsType, ?int $statsPeriod, ?bool ...

FILE: src/Controller/Tag/TagBanController.php
  class TagBanController (line 14) | class TagBanController extends AbstractController
    method __construct (line 16) | public function __construct(
    method ban (line 22) | #[IsGranted('ROLE_ADMIN')]
    method unban (line 36) | #[IsGranted('ROLE_ADMIN')]

FILE: src/Controller/Tag/TagCommentFrontController.php
  class TagCommentFrontController (line 16) | class TagCommentFrontController extends AbstractController
    method __construct (line 18) | public function __construct(
    method __invoke (line 26) | public function __invoke(string $name, ?string $sortBy, ?string $time,...

FILE: src/Controller/Tag/TagEntryFrontController.php
  class TagEntryFrontController (line 18) | class TagEntryFrontController extends AbstractController
    method __construct (line 20) | public function __construct(
    method __invoke (line 28) | public function __invoke(?string $name, ?string $sortBy, ?string $time...
    method hot (line 48) | private function hot(EntryPageView $criteria): PagerfantaInterface
    method top (line 53) | private function top(EntryPageView $criteria): PagerfantaInterface
    method active (line 58) | private function active(EntryPageView $criteria): PagerfantaInterface
    method newest (line 63) | private function newest(EntryPageView $criteria): PagerfantaInterface
    method commented (line 68) | private function commented(EntryPageView $criteria): PagerfantaInterface

FILE: src/Controller/Tag/TagOverviewController.php
  class TagOverviewController (line 15) | class TagOverviewController extends AbstractController
    method __construct (line 17) | public function __construct(
    method __invoke (line 24) | public function __invoke(string $name, Request $request): Response

FILE: src/Controller/Tag/TagPeopleFrontController.php
  class TagPeopleFrontController (line 15) | class TagPeopleFrontController extends AbstractController
    method __construct (line 17) | public function __construct(
    method __invoke (line 24) | public function __invoke(

FILE: src/Controller/Tag/TagPostFrontController.php
  class TagPostFrontController (line 16) | class TagPostFrontController extends AbstractController
    method __construct (line 18) | public function __construct(
    method __invoke (line 25) | public function __invoke(

FILE: src/Controller/TermsController.php
  class TermsController (line 12) | class TermsController extends AbstractController
    method __invoke (line 14) | public function __invoke(SettingsManager $settings, SiteRepository $re...

FILE: src/Controller/Traits/PrivateContentTrait.php
  type PrivateContentTrait (line 12) | trait PrivateContentTrait
    method handlePrivateContent (line 14) | private function handlePrivateContent(ContentInterface $entry): void

FILE: src/Controller/User/AccountDeletionController.php
  class AccountDeletionController (line 22) | class AccountDeletionController extends AbstractController
    method __construct (line 24) | public function __construct(
    method __invoke (line 35) | #[IsGranted('ROLE_USER')]

FILE: src/Controller/User/FilterListsController.php
  class FilterListsController (line 18) | class FilterListsController extends AbstractController
    method __construct (line 20) | public function __construct(
    method __invoke (line 25) | #[IsGranted('ROLE_USER')]
    method create (line 31) | #[IsGranted('ROLE_USER')]
    method edit (line 58) | #[IsGranted('ROLE_USER')]
    method delete (line 90) | #[IsGranted('ROLE_USER')]
    method createFromDto (line 100) | private function createFromDto(UserFilterListDto $data): UserFilterList

FILE: src/Controller/User/Profile/User2FAController.php
  class User2FAController (line 37) | class User2FAController extends AbstractController
    method __construct (line 42) | public function __construct(
    method enable (line 53) | #[IsGranted('ROLE_USER')]
    method disable (line 105) | #[IsGranted('ROLE_USER')]
    method qrCode (line 133) | #[IsGranted('ROLE_USER')]
    method remove (line 162) | #[IsGranted('ROLE_ADMIN')]
    method backup (line 180) | #[IsGranted('ROLE_USER')]
    method handleForm (line 215) | private function handleForm(
    method handleTotpCode (line 256) | private function handleTotpCode(FormInterface $form, UserDto $dto): void
    method handleCurrentPassword (line 264) | private function handleCurrentPassword(FormInterface $form): void
    method setupHasValidCode (line 276) | private function setupHasValidCode(string $totpSecret, string $submitt...

FILE: src/Controller/User/Profile/UserBlockController.php
  class UserBlockController (line 15) | class UserBlockController extends AbstractController
    method magazines (line 17) | #[IsGranted('ROLE_USER')]
    method users (line 31) | #[IsGranted('ROLE_USER')]
    method domains (line 45) | #[IsGranted('ROLE_USER')]

FILE: src/Controller/User/Profile/UserEditController.php
  class UserEditController (line 29) | class UserEditController extends AbstractController
    method __construct (line 31) | public function __construct(
    method profile (line 41) | #[IsGranted('ROLE_USER')]
    method email (line 72) | #[IsGranted('ROLE_USER')]
    method password (line 103) | #[IsGranted('ROLE_USER')]
    method handleForm (line 150) | private function handleForm(

FILE: src/Controller/User/Profile/UserNotificationController.php
  class UserNotificationController (line 15) | class UserNotificationController extends AbstractController
    method notifications (line 17) | #[IsGranted('ROLE_USER')]
    method read (line 29) | #[IsGranted('ROLE_USER')]
    method clear (line 37) | #[IsGranted('ROLE_USER')]

FILE: src/Controller/User/Profile/UserReportsController.php
  class UserReportsController (line 15) | class UserReportsController extends AbstractController
    method __construct (line 19) | public function __construct(
    method __invoke (line 25) | #[IsGranted('ROLE_USER')]

FILE: src/Controller/User/Profile/UserReportsModController.php
  class UserReportsModController (line 11) | class UserReportsModController extends AbstractController
    method __invoke (line 13) | #[IsGranted('ROLE_USER')]

FILE: src/Controller/User/Profile/UserSettingController.php
  class UserSettingController (line 15) | class UserSettingController extends AbstractController
    method __construct (line 17) | public function __construct(
    method __invoke (line 22) | #[IsGranted('ROLE_USER')]

FILE: src/Controller/User/Profile/UserStatsController.php
  class UserStatsController (line 14) | class UserStatsController extends AbstractController
    method __construct (line 16) | public function __construct(private readonly StatsManager $manager)
    method __invoke (line 20) | #[IsGranted('ROLE_USER')]

FILE: src/Controller/User/Profile/UserSubController.php
  class UserSubController (line 15) | class UserSubController extends AbstractController
    method magazines (line 17) | #[IsGranted('ROLE_USER')]
    method users (line 34) | #[IsGranted('ROLE_USER')]
    method domains (line 48) | #[IsGranted('ROLE_USER')]

FILE: src/Controller/User/Profile/UserVerifyController.php
  class UserVerifyController (line 16) | class UserVerifyController extends AbstractController
    method __construct (line 18) | public function __construct(
    method __invoke (line 23) | #[IsGranted('ROLE_ADMIN')]

FILE: src/Controller/User/ThemeSettingsController.php
  class ThemeSettingsController (line 13) | class ThemeSettingsController extends AbstractController
    method __invoke (line 164) | public function __invoke(string $key, string $value, Request $request)...
    method getShowUserFullName (line 187) | public static function getShowUserFullName(?Request $request): bool
    method getShowMagazineFullName (line 196) | public static function getShowMagazineFullName(?Request $request): bool
    method getShowRichMentionEntry (line 205) | public static function getShowRichMentionEntry(?Request $request): bool
    method getShowRichMentionPosts (line 214) | public static function getShowRichMentionPosts(?Request $request): bool
    method getShowRichMagazineMentionEntry (line 223) | public static function getShowRichMagazineMentionEntry(?Request $reque...
    method getShowRichMagazineMentionPosts (line 232) | public static function getShowRichMagazineMentionPosts(?Request $reque...
    method getShowRichAPLinkEntries (line 241) | public static function getShowRichAPLinkEntries(?Request $request): bool
    method getShowRichAPLinkPosts (line 250) | public static function getShowRichAPLinkPosts(?Request $request): bool

FILE: src/Controller/User/UserAvatarDeleteController.php
  class UserAvatarDeleteController (line 14) | class UserAvatarDeleteController extends AbstractController
    method __construct (line 16) | public function __construct(private readonly UserManager $userManager)
    method __invoke (line 20) | #[IsGranted('ROLE_USER')]

FILE: src/Controller/User/UserBanController.php
  class UserBanController (line 17) | class UserBanController extends AbstractController
    method ban (line 19) | #[IsGranted(new Expression('is_granted("ROLE_ADMIN") or is_granted("RO...
    method unban (lin
Condensed preview — 2520 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (9,518K chars).
[
  {
    "path": ".devcontainer/apache-vhost.conf",
    "chars": 4379,
    "preview": "ServerName 127.0.0.1\n<VirtualHost *:8080>\n    # The ServerName directive sets the request scheme, hostname and port that"
  },
  {
    "path": ".devcontainer/devcontainer.json",
    "chars": 3417,
    "preview": "// For format details, see https://aka.ms/devcontainer.json. For config options, see the\n// README at: https://github.co"
  },
  {
    "path": ".devcontainer/php_config.ini",
    "chars": 42,
    "preview": "memory_limit = 1G\nmax_execution_time = 60\n"
  },
  {
    "path": ".dockerignore",
    "chars": 367,
    "preview": "**/*.log\n**/*.md\n**/*.php~\n**/*.dist.php\n**/*.dist\n**/*.cache\n**/._*\n**/.dockerignore\n**/.DS_Store\n**/.git/\n**/.gitattri"
  },
  {
    "path": ".editorconfig",
    "chars": 707,
    "preview": "root = true\n\n[*]\ncharset = utf-8\nend_of_line = lf\nindent_size = 4\nindent_style = space\ninsert_final_newline = true\ntrim_"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/bug_report.md",
    "chars": 990,
    "preview": "---\nname: Bug report\nabout: Create a report to help us improve\ntitle: ''\nlabels: ['bug']\nassignees: ''\n\n---\n\n**Describe "
  },
  {
    "path": ".github/ISSUE_TEMPLATE/feature_request.md",
    "chars": 814,
    "preview": "---\nname: Feature request\nabout: Suggest an idea for this project\ntitle: ''\nlabels: ['enhancement']\nassignees: ''\n\n---\n\n"
  },
  {
    "path": ".github/PULL_REQUEST_TEMPLATE/pull_request_template.md",
    "chars": 1260,
    "preview": "<!-- This is a comment. You can remove it and other comments while filling out the template -->\n\n# Summary\n\n<!-- \nPlease"
  },
  {
    "path": ".github/dependabot.yml",
    "chars": 1083,
    "preview": "# Inspired by: https://github.com/dependabot/dependabot-core/blob/main/.github/dependabot.yml\n# Please see the documenta"
  },
  {
    "path": ".github/workflows/action.yaml",
    "chars": 11068,
    "preview": "name: Mbin Workflow\non:\n  pull_request:\n    branches:\n      - main\n      - develop\n      - dev/new_features\n  push:\n    "
  },
  {
    "path": ".github/workflows/build-and-publish-pipeline-image.yaml",
    "chars": 912,
    "preview": "name: Build and publish Mbin GitHub pipeline image\n\n# Trigger either manually or when ci/Dockerfile changes (on the main"
  },
  {
    "path": ".github/workflows/build-pipeline-image.yaml",
    "chars": 442,
    "preview": "name: Build Mbin GitHub pipeline image\n\n# Only trigger on Pull requests when ci/Dockerfile is changed (do not push the i"
  },
  {
    "path": ".github/workflows/contrib.yaml",
    "chars": 392,
    "preview": "name: Contributor Workflow\non:\n  push:\n    branches:\n      - main\n\njobs:\n  contrib-readme:\n    runs-on: ubuntu-latest\n  "
  },
  {
    "path": ".github/workflows/psalm.yml",
    "chars": 1036,
    "preview": "name: Psalm Security Scan\n\non:\n  push:\n    branches: [\"main\"]\n  pull_request:\n    # The branches below must be a subset "
  },
  {
    "path": ".github/workflows/stale.yml",
    "chars": 746,
    "preview": "name: \"Close stale issues and PRs\"\non:\n  schedule:\n    - cron: \"46 1 * * *\"\n\njobs:\n  stale:\n    permissions:\n      issue"
  },
  {
    "path": ".gitignore",
    "chars": 1201,
    "preview": "# IDEA/PhpStorm\n*.iml\n.idea/\n.DS_Store\nsupervisord.log\nsupervisord.pid\nreports/\n.php-cs-fixer.cache\ntools/vendor/\n\n# VSC"
  },
  {
    "path": ".php-cs-fixer.dist.php",
    "chars": 718,
    "preview": "<?php\n\ndeclare(strict_types=1);\n\n$finder = (new PhpCsFixer\\Finder())\n    ->in(__DIR__)\n    ->exclude([\n        'var',\n  "
  },
  {
    "path": "C4.md",
    "chars": 14052,
    "preview": "# Collective Code Construction Contract (C4) - Mbin\n\n- Status: final\n- Editor: Melroy van den Berg (melroy at melroy dot"
  },
  {
    "path": "CONTRIBUTING.md",
    "chars": 126,
    "preview": "# Contributing to Mbin\n\nFor all the details about contributing [go to the following contributing page](docs/03-contribut"
  },
  {
    "path": "LICENSE",
    "chars": 34523,
    "preview": "                    GNU AFFERO GENERAL PUBLIC LICENSE\n                       Version 3, 19 November 2007\n\n Copyright (C)"
  },
  {
    "path": "LICENSES/Zlib.txt",
    "chars": 818,
    "preview": "This software is provided 'as-is', without any express or implied\nwarranty.  In no event will the authors be held liable"
  },
  {
    "path": "README.md",
    "chars": 17212,
    "preview": "<p align=\"center\">\n    <img src=\"docs/images/mbin.png\" alt=\"Mbin logo\" width=\"400\">\n</p>\n<p align=\"center\">\n  <a href=\"h"
  },
  {
    "path": "UPGRADE.md",
    "chars": 621,
    "preview": "# Upgrade\n\n## Bare Metal / VM Upgrade\n\nIf you perform a mbin upgrade (eg. `git pull`), be aware to _always_ execute the "
  },
  {
    "path": "assets/app.js",
    "chars": 388,
    "preview": "import './stimulus_bootstrap.js';\nimport './styles/app.scss';\nimport './utils/popover.js';\nimport '@github/markdown-tool"
  },
  {
    "path": "assets/controllers/autogrow_controller.js",
    "chars": 186,
    "preview": "import TextareaAutoGrow from 'stimulus-textarea-autogrow';\n\n/* stimulusFetch: 'lazy' */\nexport default class extends Tex"
  },
  {
    "path": "assets/controllers/clipboard_controller.js",
    "chars": 262,
    "preview": "import { Controller } from '@hotwired/stimulus';\n\n/* stimulusFetch: 'lazy' */\nexport default class extends Controller {\n"
  },
  {
    "path": "assets/controllers/collapsable_controller.js",
    "chars": 2664,
    "preview": "import { Controller } from '@hotwired/stimulus';\nimport debounce from '../utils/debounce';\n\n// use some buffer-space so "
  },
  {
    "path": "assets/controllers/comment_collapse_controller.js",
    "chars": 2825,
    "preview": "import { Controller } from '@hotwired/stimulus';\nimport { getLevel } from '../utils/mbin';\n\nconst COMMENT_ELEMENT_TAG = "
  },
  {
    "path": "assets/controllers/confirmation_controller.js",
    "chars": 290,
    "preview": "import { Controller } from '@hotwired/stimulus';\n\n/* stimulusFetch: 'lazy' */\nexport default class extends Controller {\n"
  },
  {
    "path": "assets/controllers/entry_link_create_controller.js",
    "chars": 2522,
    "preview": "import { ApplicationController, useThrottle } from 'stimulus-use';\nimport { fetch, ok } from '../utils/http';\nimport rou"
  },
  {
    "path": "assets/controllers/form_collection_controller.js",
    "chars": 509,
    "preview": "import { Controller } from '@hotwired/stimulus';\n\n/* stimulusFetch: 'lazy' */\nexport default class extends Controller {\n"
  },
  {
    "path": "assets/controllers/html_refresh_controller.js",
    "chars": 1593,
    "preview": "import { fetch, ok } from '../utils/http';\nimport { Controller } from '@hotwired/stimulus';\n\n/* stimulusFetch: 'lazy' */"
  },
  {
    "path": "assets/controllers/image_upload_controller.js",
    "chars": 1243,
    "preview": "import { Controller } from '@hotwired/stimulus';\n\n/* stimulusFetch: 'lazy' */\nexport default class extends Controller {\n"
  },
  {
    "path": "assets/controllers/infinite_scroll_controller.js",
    "chars": 3489,
    "preview": "import { fetch, ok } from '../utils/http';\nimport { Controller } from '@hotwired/stimulus';\nimport { useIntersection } f"
  },
  {
    "path": "assets/controllers/input_length_controller.js",
    "chars": 1059,
    "preview": "import { Controller } from '@hotwired/stimulus';\n\n/* stimulusFetch: 'lazy' */\nexport default class extends Controller {\n"
  },
  {
    "path": "assets/controllers/lightbox_controller.js",
    "chars": 374,
    "preview": "import { Controller } from '@hotwired/stimulus';\nimport GLightbox from 'glightbox';\n\n/* stimulusFetch: 'lazy' */\nexport "
  },
  {
    "path": "assets/controllers/markdown_toolbar_controller.js",
    "chars": 3268,
    "preview": "// SPDX-FileCopyrightText: 2023-2024 /kbin & Mbin contributors\n//\n// SPDX-License-Identifier: AGPL-3.0-only\n\nimport 'emo"
  },
  {
    "path": "assets/controllers/mbin_controller.js",
    "chars": 2156,
    "preview": "import { ApplicationController, useDebounce } from 'stimulus-use';\n\n/* stimulusFetch: 'lazy' */\nexport default class ext"
  },
  {
    "path": "assets/controllers/mentions_controller.js",
    "chars": 2303,
    "preview": "import { fetch, ok } from '../utils/http';\nimport { Controller } from '@hotwired/stimulus';\nimport router from '../utils"
  },
  {
    "path": "assets/controllers/notifications_controller.js",
    "chars": 4906,
    "preview": "import { ThrowResponseIfNotOk, fetch } from '../utils/http';\nimport { Controller } from '@hotwired/stimulus';\nimport Sub"
  },
  {
    "path": "assets/controllers/options_controller.js",
    "chars": 1675,
    "preview": "import { Controller } from '@hotwired/stimulus';\n\n/* stimulusFetch: 'lazy' */\nexport default class extends Controller {\n"
  },
  {
    "path": "assets/controllers/password_preview_controller.js",
    "chars": 1639,
    "preview": "import { Controller } from '@hotwired/stimulus';\n\n/* stimulusFetch: 'lazy' */\nexport default class extends Controller {\n"
  },
  {
    "path": "assets/controllers/post_controller.js",
    "chars": 3109,
    "preview": "import { fetch, ok } from '../utils/http';\nimport { Controller } from '@hotwired/stimulus';\nimport getIntIdFromElement f"
  },
  {
    "path": "assets/controllers/preview_controller.js",
    "chars": 4319,
    "preview": "import { fetch, ok } from '../utils/http';\nimport { Controller } from '@hotwired/stimulus';\nimport router from '../utils"
  },
  {
    "path": "assets/controllers/push_controller.js",
    "chars": 5836,
    "preview": "import { ThrowResponseIfNotOk, fetch } from '../utils/http';\nimport { Controller } from '@hotwired/stimulus';\n\nexport de"
  },
  {
    "path": "assets/controllers/rich_textarea_controller.js",
    "chars": 9483,
    "preview": "import { Controller } from '@hotwired/stimulus';\nimport { fetch } from '../utils/http';\n\n/* stimulusFetch: 'lazy' */\nexp"
  },
  {
    "path": "assets/controllers/scroll_top_controller.js",
    "chars": 797,
    "preview": "import { Controller } from '@hotwired/stimulus';\n\nexport default class extends Controller {\n    connect() {\n        cons"
  },
  {
    "path": "assets/controllers/selection_controller.js",
    "chars": 209,
    "preview": "import { Controller } from '@hotwired/stimulus';\n\n/* stimulusFetch: 'lazy' */\nexport default class extends Controller {\n"
  },
  {
    "path": "assets/controllers/settings_row_enum_controller.js",
    "chars": 613,
    "preview": "import { Controller } from '@hotwired/stimulus';\n\nexport default class extends Controller {\n    /**\n     * Calls the act"
  },
  {
    "path": "assets/controllers/settings_row_switch_controller.js",
    "chars": 920,
    "preview": "import { Controller } from '@hotwired/stimulus';\n\nexport default class extends Controller {\n    /**\n     * Calls the act"
  },
  {
    "path": "assets/controllers/subject_controller.js",
    "chars": 15870,
    "preview": "import { fetch, ok } from '../utils/http';\nimport getIntIdFromElement, { getDepth, getLevel, getTypeFromNotification } f"
  },
  {
    "path": "assets/controllers/subject_list_controller.js",
    "chars": 4245,
    "preview": "import { fetch, ok } from '../utils/http';\nimport { getDepth, getLevel, getTypeFromNotification } from '../utils/mbin';\n"
  },
  {
    "path": "assets/controllers/subs_controller.js",
    "chars": 790,
    "preview": "import { fetch, ok } from '../utils/http';\nimport { Controller } from '@hotwired/stimulus';\n\n/* stimulusFetch: 'lazy' */"
  },
  {
    "path": "assets/controllers/subs_panel_controller.js",
    "chars": 1536,
    "preview": "import { Controller } from '@hotwired/stimulus';\nimport router from '../utils/routing';\n\nconst KBIN_SUBSCRIPTIONS_IN_SEP"
  },
  {
    "path": "assets/controllers/thumb_controller.js",
    "chars": 537,
    "preview": "import { Controller } from '@hotwired/stimulus';\n\n/* stimulusFetch: 'lazy' */\nexport default class extends Controller {\n"
  },
  {
    "path": "assets/controllers/timeago_controller.js",
    "chars": 1526,
    "preview": "import { Controller } from '@hotwired/stimulus';\n/* eslint-disable camelcase -- zh_TW is a specific identifier */\n// esl"
  },
  {
    "path": "assets/controllers.json",
    "chars": 633,
    "preview": "{\n    \"controllers\": {\n        \"@symfony/ux-autocomplete\": {\n            \"autocomplete\": {\n                \"enabled\": tr"
  },
  {
    "path": "assets/email.js",
    "chars": 31,
    "preview": "import './styles/emails.scss';\n"
  },
  {
    "path": "assets/stimulus_bootstrap.js",
    "chars": 422,
    "preview": "// register any custom, 3rd party controllers here\n// app.register('some_controller_name', SomeImportedController);\nimpo"
  },
  {
    "path": "assets/styles/_shared.scss",
    "chars": 226,
    "preview": "// a file for shared CSS styling between multiple components or views\n\n.user-badge {\n  border: var(--kbin-section-border"
  },
  {
    "path": "assets/styles/_variables.scss",
    "chars": 5945,
    "preview": "$grid-breakpoints: (\n        xs: 0,\n        sm: 690px,\n        md: 768px,\n        lg: 992px,\n        xl: 1200px,\n       "
  },
  {
    "path": "assets/styles/app.scss",
    "chars": 1863,
    "preview": "@use '@fortawesome/fontawesome-free/scss/fontawesome';\n@use '@fortawesome/fontawesome-free/scss/solid';\n@use '@fortaweso"
  },
  {
    "path": "assets/styles/components/_announcement.scss",
    "chars": 360,
    "preview": ".announcement {\n  padding: 0.75rem;\n  position: relative;\n\n  p {\n    margin: 0;\n    text-align: center;\n  }\n\n  a{\n    fo"
  },
  {
    "path": "assets/styles/components/_comment.scss",
    "chars": 5457,
    "preview": "@use \"sass:list\";\n@use \"sass:string\";\n@use '../layout/breakpoints' as b;\n@use '../mixins/animations' as ani;\n@use '../mi"
  },
  {
    "path": "assets/styles/components/_domain.scss",
    "chars": 976,
    "preview": ".domain {\n  header {\n    text-align: center;\n  \n    h4 {\n      font-size: 1rem;\n      margin-bottom: 1rem;\n      margin-"
  },
  {
    "path": "assets/styles/components/_dropdown.scss",
    "chars": 2336,
    "preview": "// Learn about how this was made:\n// @link https://moderncss.dev/css-only-accessible-dropdown-navigation-menu/\n$transiti"
  },
  {
    "path": "assets/styles/components/_emoji_picker.scss",
    "chars": 358,
    "preview": "emoji-picker {\n  --background: var(--kbin-bg);\n  --input-font-color: var(--kbin-text-color);\n  --button-active-backgroun"
  },
  {
    "path": "assets/styles/components/_entry.scss",
    "chars": 10928,
    "preview": "@use '../layout/breakpoints' as b;\n@use '../mixins/animations' as ani;\n@use '../mixins/mbin';\n\n:root {\n  --kbin-entry-el"
  },
  {
    "path": "assets/styles/components/_figure_image.scss",
    "chars": 2354,
    "preview": "// main wrapper\n.figure-container {\n  position: relative;\n  width: fit-content;\n  height: fit-content;\n}\n\n// main image "
  },
  {
    "path": "assets/styles/components/_figure_lightbox.scss",
    "chars": 1412,
    "preview": ".glightbox-container {\n  .goverlay {\n    background: rgba(0, 0, 0, 0.7);\n  }\n\n  .gslide-description {\n    font-family: v"
  },
  {
    "path": "assets/styles/components/_filter_list.scss",
    "chars": 102,
    "preview": ".filter-list {\n  h3 {\n    margin-top: 0;\n    margin-bottom: 1rem;\n  }\n\n  .flex {\n    gap: 1rem;\n  }\n}\n"
  },
  {
    "path": "assets/styles/components/_header.scss",
    "chars": 5506,
    "preview": "@use '../layout/breakpoints' as b;\n\n#header {\n  align-items: end;\n  background: var(--kbin-header-bg);\n  color: var(--kb"
  },
  {
    "path": "assets/styles/components/_infinite_scroll.scss",
    "chars": 80,
    "preview": ".infinite-scroll {\n  text-align: center;\n\n  .loader {\n    margin: 2rem 0;\n  }\n}\n"
  },
  {
    "path": "assets/styles/components/_inline_md.scss",
    "chars": 420,
    "preview": ".entry-inline,\n.entry-comment-inline,\n.post-inline,\n.post-comment-inline {\n  display: inline-block;\n  font-weight: bold;"
  },
  {
    "path": "assets/styles/components/_login.scss",
    "chars": 1234,
    "preview": "@use '../layout/breakpoints' as b;\n\n.page-login,\n.page-register,\n.page-reset-password,\n.page-reset-password-email-sent,\n"
  },
  {
    "path": "assets/styles/components/_magazine.scss",
    "chars": 5259,
    "preview": "@use '../layout/breakpoints' as b;\n\n.magazine {\n  .panel {\n    margin-bottom: 1rem;\n    text-align: center;\n\n    a, butt"
  },
  {
    "path": "assets/styles/components/_main.scss",
    "chars": 34,
    "preview": "#main {\n  padding-bottom: 1rem;\n}\n"
  },
  {
    "path": "assets/styles/components/_media.scss",
    "chars": 2159,
    "preview": "@use '../layout/breakpoints' as b;\n\n.media {\n  text-align: left;\n  align-items: center;\n  display: flex;\n  gap: 1rem;\n\n "
  },
  {
    "path": "assets/styles/components/_messages.scss",
    "chars": 976,
    "preview": ".page-messages {\n  #main .thread {\n    display: flex;\n    gap: .5rem;\n    justify-content: space-between;\n  }\n\n  .messag"
  },
  {
    "path": "assets/styles/components/_modlog.scss",
    "chars": 153,
    "preview": ".page-modlog {\n  #main .log {\n    display: flex;\n    gap: 1rem;\n    justify-content: space-between;\n  }\n\n  .log span {\n "
  },
  {
    "path": "assets/styles/components/_monitoring.scss",
    "chars": 1112,
    "preview": ".page-admin-monitoring {\n  h1, h2, h3, h4, h5, h6 {\n    margin-top: 0;\n  }\n  .monitoring-twig-render {\n    .children {\n "
  },
  {
    "path": "assets/styles/components/_notification_switch.scss",
    "chars": 1210,
    "preview": ".notification-switch-container .notification-switch {\n  align-items: center;\n  justify-content: center;\n}\n\n.entry-info,\n"
  },
  {
    "path": "assets/styles/components/_notifications.scss",
    "chars": 123,
    "preview": ".page-notifications {\n  #main .notification {\n    display: flex;\n    gap: .5rem;\n    justify-content: space-between;\n  }"
  },
  {
    "path": "assets/styles/components/_pagination.scss",
    "chars": 533,
    "preview": "@use '../layout/breakpoints' as b;\n\n.pagination {\n  color: var(--kbin-meta-text-color);\n  display: flex;\n  gap: 1rem;\n  "
  },
  {
    "path": "assets/styles/components/_popover.scss",
    "chars": 1936,
    "preview": ":root {\n  --popover-width: 250px;\n  --popover-control-gap: 4px; // ⚠️ use px units - vertical gap between the popover an"
  },
  {
    "path": "assets/styles/components/_post.scss",
    "chars": 11515,
    "preview": "@use '../layout/breakpoints' as b;\n@use '../mixins/animations' as ani;\n@use '../mixins/mbin';\n\n.post-add {\n  .ts-control"
  },
  {
    "path": "assets/styles/components/_preview.scss",
    "chars": 868,
    "preview": "@use '../variables' as v;\n\n.preview {\n  text-align:center;\n  //display: inline-flex;\n\n  button {\n    margin: 0 .25rem;\n "
  },
  {
    "path": "assets/styles/components/_search.scss",
    "chars": 618,
    "preview": ".search-container {\n  background: var(--kbin-input-bg);\n  border: var(--kbin-input-border);\n  border-radius: var(--kbin-"
  },
  {
    "path": "assets/styles/components/_settings_row.scss",
    "chars": 4325,
    "preview": ".settings-row {\n  display: grid;\n  grid-template-areas: \"label value\";\n  grid-template-columns: auto;\n  align-items: cen"
  },
  {
    "path": "assets/styles/components/_sidebar-subscriptions.scss",
    "chars": 3742,
    "preview": "@use '../layout/breakpoints' as b;\n\n.rounded-edges .sidebar-subscriptions .active {\n  border-radius: 0.5rem;\n}\n\n.mbin-co"
  },
  {
    "path": "assets/styles/components/_sidebar.scss",
    "chars": 14089,
    "preview": "@use '../layout/breakpoints' as b;\n@use '../mixins/mbin';\n\n#sidebar,\n.sidebar-subscriptions {\n  font-size: .85rem;\n  opa"
  },
  {
    "path": "assets/styles/components/_stats.scss",
    "chars": 421,
    "preview": "@use '../layout/breakpoints' as b;\n\n.stats-count {\n  display: grid;\n  grid-template-columns: repeat(3, 1fr);\n  row-gap: "
  },
  {
    "path": "assets/styles/components/_subject.scss",
    "chars": 1677,
    "preview": ".subjects {\n  .post,\n  .entry {\n    margin-top: .5rem;\n\n    &:first-child {\n      margin-top: 0\n    }\n  }\n\n  .comment {\n"
  },
  {
    "path": "assets/styles/components/_suggestions.scss",
    "chars": 606,
    "preview": ".suggestions {\n  position: absolute;\n  z-index: 10;\n  border: var(--kbin-input-border);\n  background: var(--kbin-input-b"
  },
  {
    "path": "assets/styles/components/_tag.scss",
    "chars": 328,
    "preview": ".section.tag {\n  header {\n    text-align: center;\n\n    h4 {\n      font-size: 1.2rem;\n      margin-bottom: 0;\n      margi"
  },
  {
    "path": "assets/styles/components/_topbar.scss",
    "chars": 1080,
    "preview": "#topbar {\n  background: var(--kbin-topbar-bg);\n  border-bottom: var(--kbin-topbar-border);\n  display: none;\n  grid-templ"
  },
  {
    "path": "assets/styles/components/_user.scss",
    "chars": 5564,
    "preview": "@use '../layout/breakpoints' as b;\n\n.user {\n  &__actions {\n    display: flex;\n    flex-direction: row;\n    justify-conte"
  },
  {
    "path": "assets/styles/components/_vote.scss",
    "chars": 675,
    "preview": ".vote {\n  display: grid;\n  gap: .5rem;\n  grid-template-rows: min-content min-content;\n\n  .active.vote__up button {\n    c"
  },
  {
    "path": "assets/styles/emails.scss",
    "chars": 1687,
    "preview": "\nbody{\n    background-color: #fff;\n    color: #212529;\n    font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", \""
  },
  {
    "path": "assets/styles/layout/_alerts.scss",
    "chars": 869,
    "preview": ".alert {\n  margin: .5rem 0;\n  padding: 1rem;\n  position: relative;\n  z-index: 2;\n\n  p {\n    margin: 0;\n  }\n\n  a {\n    fo"
  },
  {
    "path": "assets/styles/layout/_breakpoints.scss",
    "chars": 5085,
    "preview": "@use \"sass:list\";\n@use \"sass:map\";\n// https://github.com/twbs/bootstrap/blob/main/scss/mixins/_breakpoints.scss\n//\n// Br"
  },
  {
    "path": "assets/styles/layout/_forms.scss",
    "chars": 10591,
    "preview": "@use 'breakpoints' as b;\n@use '../mixins/mbin';\n@use '@fortawesome/fontawesome-free/scss/fontawesome' as fa;\n// needed f"
  },
  {
    "path": "assets/styles/layout/_icons.scss",
    "chars": 61,
    "preview": "i.active {\n  color: var(--kbin-color-icon-active, orange);\n}\n"
  },
  {
    "path": "assets/styles/layout/_images.scss",
    "chars": 321,
    "preview": ".image-inline {\n    display: inline-block;\n    overflow: hidden;\n\n    // inline icons/avatars that are nsfw\n    // likel"
  },
  {
    "path": "assets/styles/layout/_layout.scss",
    "chars": 8248,
    "preview": "@use 'breakpoints' as b;\n\nbody {\n  background: var(--kbin-bg);\n  position: relative;\n}\n\n#logo path {\n  fill: red\n}\n\n.mbi"
  },
  {
    "path": "assets/styles/layout/_meta.scss",
    "chars": 402,
    "preview": ".meta {\n  color: var(--kbin-meta-text-color);\n  font-size: .8rem;\n  opacity: .75;\n\n  a {\n    color: var(--kbin-meta-link"
  },
  {
    "path": "assets/styles/layout/_normalize.scss",
    "chars": 6252,
    "preview": "/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */\n\n/* Document\n   ==========================="
  },
  {
    "path": "assets/styles/layout/_options.scss",
    "chars": 4075,
    "preview": "@use 'breakpoints' as b;\n\n.options {\n  background: var(--kbin-options-bg);\n  border: var(--kbin-options-border);\n  color"
  },
  {
    "path": "assets/styles/layout/_section.scss",
    "chars": 1552,
    "preview": ".section {\n  background-color: var(--kbin-section-bg);\n  border: var(--kbin-section-border);\n  color: var(--kbin-section"
  },
  {
    "path": "assets/styles/layout/_tools.scss",
    "chars": 938,
    "preview": ".stretched-link {\n  &::after {\n    bottom: 0;\n    content: '';\n    left: 0;\n    position: absolute;\n    right: 0;\n    to"
  },
  {
    "path": "assets/styles/layout/_typo.scss",
    "chars": 901,
    "preview": "@use '../mixins/mbin';\n\nbody {\n  background-color: var(--kbin-body-bg);\n  color: var(--kbin-text-color);\n  font-family: "
  },
  {
    "path": "assets/styles/mixins/animations.scss",
    "chars": 562,
    "preview": "@use '../layout/breakpoints' as b;\n\n@mixin fade-in($waitTime, $from) {\n  animation: fadein #{$waitTime} linear 1 normal "
  },
  {
    "path": "assets/styles/mixins/mbin.scss",
    "chars": 426,
    "preview": "@mixin btn-link {\n  background: none;\n  border: 0;\n  display: inline;\n  font-weight: normal;\n  margin: 0;\n  padding: 0;\n"
  },
  {
    "path": "assets/styles/mixins/theme-dark.scss",
    "chars": 4563,
    "preview": "// loaded under .theme--dark\n// or .theme--default with prefers-color-scheme: dark\n@mixin theme {\n  --kbin-body-font-fam"
  },
  {
    "path": "assets/styles/mixins/theme-light.scss",
    "chars": 4464,
    "preview": "// loaded under .theme--light\n// or .theme--default with prefers-color-scheme: light\n@mixin theme {\n  --kbin-body-font-f"
  },
  {
    "path": "assets/styles/mixins/theme-solarized-dark.scss",
    "chars": 5490,
    "preview": "$base03: #002b36;\n$base02: #073642;\n$base01: #586e75;\n$base00: #657b83;\n$base0: #839496;\n$base1: #93a1a1;\n$base2: #eee8d"
  },
  {
    "path": "assets/styles/mixins/theme-solarized-light.scss",
    "chars": 5444,
    "preview": "$base03: #002b36;\n$base02: #073642;\n$base01: #405358;\n$base00: #5b6f77;\n$base0: #839496;\n$base1: #606e6e;\n$base2: #eee8d"
  },
  {
    "path": "assets/styles/pages/page_bookmarks.scss",
    "chars": 147,
    "preview": ".page-bookmarks {\n  .entry, .entry-comment, .post, .post-comment, .comment {\n    margin-top: 0!important;\n    margin-bot"
  },
  {
    "path": "assets/styles/pages/page_filter_lists.scss",
    "chars": 312,
    "preview": ".page-settings.page-settings-filter-lists {\n  .existing-words > div > label {\n    display:none\n  }\n\n  .existing-words > "
  },
  {
    "path": "assets/styles/pages/page_modlog.scss",
    "chars": 120,
    "preview": ".page-modlog {\n  .ts-wrapper .ts-control input {\n    min-width: unset;\n  }\n\n  .ts-wrapper {\n    margin-bottom: 0;\n  }\n}\n"
  },
  {
    "path": "assets/styles/pages/page_profile.scss",
    "chars": 226,
    "preview": ".page-user:not(.page-user-replies) {\n  .subjects {\n    .entry-comment,\n    .post-comment,\n    .comment {\n      margin-le"
  },
  {
    "path": "assets/styles/pages/post_front.scss",
    "chars": 66,
    "preview": ".page-post-front .section--top .dropdown__menu {\n  z-index: 10;\n}\n"
  },
  {
    "path": "assets/styles/pages/post_single.scss",
    "chars": 115,
    "preview": ".page-post-single {\n  .options__view {\n    grid-area: end;\n  }\n\n  .post-comments {\n    margin-bottom: .5rem;\n  }\n}\n"
  },
  {
    "path": "assets/styles/themes/_default.scss",
    "chars": 322,
    "preview": "@use '../mixins/theme-dark' as dark;\n@use '../mixins/theme-light' as light;\n\n.theme--default {\n  @media (prefers-color-s"
  },
  {
    "path": "assets/styles/themes/_kbin.scss",
    "chars": 4723,
    "preview": ".theme--kbin {\n  --kbin-body-font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", \"Noto Sans\", Roboto, \"Helvetica"
  },
  {
    "path": "assets/styles/themes/_solarized.scss",
    "chars": 388,
    "preview": "@use '../mixins/theme-solarized-dark' as sol-dark;\n@use '../mixins/theme-solarized-light' as sol-light;\n\n.theme--solariz"
  },
  {
    "path": "assets/styles/themes/_tokyo-night.scss",
    "chars": 4733,
    "preview": ".theme--tokyo-night {\n  --kbin-body-font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", \"Noto Sans\", Roboto, \"He"
  },
  {
    "path": "assets/utils/debounce.js",
    "chars": 176,
    "preview": "export default function debounce(delay, handler) {\n    let timer = 0;\n    return function() {\n        clearTimeout(timer"
  },
  {
    "path": "assets/utils/event-source.js",
    "chars": 348,
    "preview": "export default function subscribe(endpoint, topics, cb) {\n    if (!endpoint) {\n        return null;\n    }\n\n    const url"
  },
  {
    "path": "assets/utils/http.js",
    "chars": 1002,
    "preview": "/**\n * @param {RequestInfo} url\n * @param {RequestInit} options\n * @returns {Promise<Response>}\n */\nexport async functio"
  },
  {
    "path": "assets/utils/mbin.js",
    "chars": 1317,
    "preview": "export default function getIntIdFromElement(element) {\n    return element.id.substring(element.id.lastIndexOf('-') + 1);"
  },
  {
    "path": "assets/utils/popover.js",
    "chars": 13420,
    "preview": "/* eslint-disable no-undef */\nUtil = function() {};\n\nUtil.hasClass = function(el, className) {\n    return el.classList.c"
  },
  {
    "path": "assets/utils/routing.js",
    "chars": 262,
    "preview": "import Routing from '../../vendor/friendsofsymfony/jsrouting-bundle/Resources/public/js/router.min.js';\n\nconst routes = "
  },
  {
    "path": "bin/console",
    "chars": 629,
    "preview": "#!/usr/bin/env php\n<?php\n\nuse App\\Kernel;\nuse Symfony\\Bundle\\FrameworkBundle\\Console\\Application;\n\nif (!is_dir(dirname(_"
  },
  {
    "path": "bin/phpunit",
    "chars": 86,
    "preview": "#!/usr/bin/env php\n<?php\n\nrequire dirname(__DIR__).'/vendor/phpunit/phpunit/phpunit';\n"
  },
  {
    "path": "bin/post-upgrade",
    "chars": 2195,
    "preview": "#!/usr/bin/env bash\nset -e\nBIN_DIR=$( cd -- \"$( dirname -- \"${BASH_SOURCE[0]}\" )\" &> /dev/null && pwd )\n\nprintf 'Do you "
  },
  {
    "path": "ci/Dockerfile",
    "chars": 969,
    "preview": "# Using latest Debian Stable\nFROM debian:13-slim\n\nCOPY --from=composer/composer:latest-bin /composer /usr/bin/composer\n\n"
  },
  {
    "path": "ci/ignoredPaths.txt",
    "chars": 462,
    "preview": "# Dev container is not relevant to the workflow\n.devcontainer/**\n# Issue and pull request templates are not relevant to "
  },
  {
    "path": "ci/skipOnExcluded.sh",
    "chars": 989,
    "preview": "#!/usr/bin/env bash\n\nset -eu\n\n# Necessary in the GitHub Action environment\ngit config --global --add safe.directory \"$(r"
  },
  {
    "path": "compose.dev.yaml",
    "chars": 2294,
    "preview": "# Development environment override\nservices:\n    php:\n        pull_policy: build\n        build:\n            dockerfile: "
  },
  {
    "path": "compose.yaml",
    "chars": 2908,
    "preview": "services:\n    php:\n        image: ghcr.io/mbinorg/mbin:latest\n        build:\n            dockerfile: docker/Dockerfile\n "
  },
  {
    "path": "composer.json",
    "chars": 6607,
    "preview": "{\n    \"name\": \"mbinorg/mbin\",\n    \"description\": \"Mbin is a decentralized content aggregator and microblogging platform "
  },
  {
    "path": "config/bundles.php",
    "chars": 2588,
    "preview": "<?php\n\ndeclare(strict_types=1);\n\nreturn [\n    Symfony\\Bundle\\FrameworkBundle\\FrameworkBundle::class => ['all' => true],\n"
  },
  {
    "path": "config/mbin_routes/activity_pub.yaml",
    "chars": 4757,
    "preview": "ap_webfinger:\n    controller: App\\Controller\\ActivityPub\\WebFingerController\n    path: '/.well-known/webfinger'\n    meth"
  },
  {
    "path": "config/mbin_routes/admin.yaml",
    "chars": 4354,
    "preview": "admin_users_active:\n    controller: App\\Controller\\Admin\\AdminUsersController::active\n    defaults: { withFederated: fal"
  },
  {
    "path": "config/mbin_routes/admin_api.yaml",
    "chars": 4634,
    "preview": "api_admin_entry_purge:\n  controller: App\\Controller\\Api\\Entry\\Admin\\EntriesPurgeApi\n  path: /api/admin/entry/{entry_id}/"
  },
  {
    "path": "config/mbin_routes/ajax.yaml",
    "chars": 2818,
    "preview": "ajax_fetch_title:\n  controller: App\\Controller\\AjaxController::fetchTitle\n  defaults: { _format: json }\n  path: /ajax/fe"
  },
  {
    "path": "config/mbin_routes/api.yaml",
    "chars": 115,
    "preview": "app.swagger_ui:\n  path: /api/docs\n  methods: GET\n  defaults: { _controller: nelmio_api_doc.controller.swagger_ui }\n"
  },
  {
    "path": "config/mbin_routes/bookmark.yaml",
    "chars": 2476,
    "preview": "bookmark_front:\n    controller: App\\Controller\\BookmarkListController::front\n    defaults: { sortBy: hot, time: '∞', fed"
  },
  {
    "path": "config/mbin_routes/bookmark_api.yaml",
    "chars": 2278,
    "preview": "api_bookmark_front:\n    controller: App\\Controller\\Api\\Bookmark\\BookmarkListApiController::front\n    path: /api/bookmark"
  },
  {
    "path": "config/mbin_routes/combined_api.yaml",
    "chars": 821,
    "preview": "api_combined_cursor:\n    controller: App\\Controller\\Api\\Combined\\CombinedRetrieveApi::cursorCollection\n    path: /api/co"
  },
  {
    "path": "config/mbin_routes/custom_style.yaml",
    "chars": 112,
    "preview": "custom_style:\n    controller: App\\Controller\\CustomStyleController\n    path: /custom-style\n    methods: [ GET ]\n"
  },
  {
    "path": "config/mbin_routes/domain.yaml",
    "chars": 1049,
    "preview": "domain_entries:\n  controller: App\\Controller\\Domain\\DomainFrontController\n  defaults: { sortBy: hot, time: '∞'}\n  path: "
  },
  {
    "path": "config/mbin_routes/domain_api.yaml",
    "chars": 1871,
    "preview": "# Get a list of threads from specific domain\napi_domain_entries_retrieve:\n  controller: App\\Controller\\Api\\Entry\\DomainE"
  },
  {
    "path": "config/mbin_routes/entry.yaml",
    "chars": 10445,
    "preview": "entry_comment_create:\n  controller: App\\Controller\\Entry\\Comment\\EntryCommentCreateController\n  defaults: { slug: -, par"
  },
  {
    "path": "config/mbin_routes/entry_api.yaml",
    "chars": 4399,
    "preview": "# Get information about a thread\napi_entry_retrieve:\n  controller: App\\Controller\\Api\\Entry\\EntriesRetrieveApi\n  path: /"
  },
  {
    "path": "config/mbin_routes/front.yaml",
    "chars": 3408,
    "preview": "front:\n  controller: App\\Controller\\Entry\\EntryFrontController::front\n  defaults: &front_defaults { subscription: home, "
  },
  {
    "path": "config/mbin_routes/instance_api.yaml",
    "chars": 1763,
    "preview": "api_instance_details_retrieve:\n  controller: App\\Controller\\Api\\Instance\\InstanceDetailsApi\n  path: /api/instance\n  meth"
  },
  {
    "path": "config/mbin_routes/landing.yaml",
    "chars": 173,
    "preview": "about:\n  controller: App\\Controller\\AboutController\n  path: /about\n  methods: [ GET ]\n\nagent:\n  controller: App\\Controll"
  },
  {
    "path": "config/mbin_routes/magazine.yaml",
    "chars": 2488,
    "preview": "magazine_create:\n    controller: App\\Controller\\Magazine\\MagazineCreateController\n    path: /newMagazine\n    methods: [G"
  },
  {
    "path": "config/mbin_routes/magazine_api.yaml",
    "chars": 4738,
    "preview": "# Create an article entry in a magazine\napi_magazine_entry_create_article:\n  controller: App\\Controller\\Api\\Entry\\Magazi"
  },
  {
    "path": "config/mbin_routes/magazine_mod_request_api.yaml",
    "chars": 1877,
    "preview": "api_magazine_modrequest_toggle:\n    controller: App\\Controller\\Api\\Magazine\\Moderate\\MagazineModOwnerRequestApi::toggleM"
  },
  {
    "path": "config/mbin_routes/magazine_panel.yaml",
    "chars": 3629,
    "preview": "magazine_panel_bans:\n  controller: App\\Controller\\Magazine\\Panel\\MagazineBanController::bans\n  path: /m/{name}/panel/ban"
  },
  {
    "path": "config/mbin_routes/message.yaml",
    "chars": 429,
    "preview": "messages_front:\n  controller: App\\Controller\\Message\\MessageThreadListController\n  path: /profile/messages\n  methods: [ "
  },
  {
    "path": "config/mbin_routes/message_api.yaml",
    "chars": 1380,
    "preview": "# Get a specific message\napi_message_retrieve:\n  controller: App\\Controller\\Api\\Message\\MessageRetrieveApi\n  path: /api/"
  },
  {
    "path": "config/mbin_routes/moderation_api.yaml",
    "chars": 7721,
    "preview": "api_moderate_entry_toggle_pin:\n  controller: App\\Controller\\Api\\Entry\\Moderate\\EntriesPinApi\n  path: /api/moderate/entry"
  },
  {
    "path": "config/mbin_routes/modlog.yaml",
    "chars": 99,
    "preview": "modlog:\n  controller: App\\Controller\\ModlogController::instance\n  path: /modlog\n  methods: [ GET ]\n"
  },
  {
    "path": "config/mbin_routes/notification_api.yaml",
    "chars": 2024,
    "preview": "api_notification_read:\n  controller: App\\Controller\\Api\\Notification\\NotificationReadApi::read\n  path: /api/notification"
  },
  {
    "path": "config/mbin_routes/notification_settings.yaml",
    "chars": 258,
    "preview": "change_notification_setting:\n    controller: App\\Controller\\NotificationSettingsController::changeSetting\n    path: /cns"
  },
  {
    "path": "config/mbin_routes/notification_settings_api.yaml",
    "chars": 319,
    "preview": "api_notification_settings_update:\n    controller: App\\Controller\\Api\\Notification\\NotificationSettingApi::update\n    pat"
  },
  {
    "path": "config/mbin_routes/page.yaml",
    "chars": 883,
    "preview": "page_contact:\n  controller: App\\Controller\\ContactController\n  path: /contact\n  methods: [ GET, POST ]\n\npage_faq:\n  cont"
  },
  {
    "path": "config/mbin_routes/people.yaml",
    "chars": 107,
    "preview": "people_front:\n  controller: App\\Controller\\People\\PeopleFrontController\n  path: /people\n  methods: [ GET ]\n"
  },
  {
    "path": "config/mbin_routes/post.yaml",
    "chars": 7547,
    "preview": "post_comment_create:\n  controller: App\\Controller\\Post\\Comment\\PostCommentCreateController\n  defaults: { slug: -, parent"
  },
  {
    "path": "config/mbin_routes/post_api.yaml",
    "chars": 4363,
    "preview": "api_posts_subscribed:\n  controller: App\\Controller\\Api\\Post\\PostsRetrieveApi::subscribed\n  path: /api/posts/subscribed\n "
  },
  {
    "path": "config/mbin_routes/search.yaml",
    "chars": 111,
    "preview": "search:\n  controller: App\\Controller\\SearchController\n  defaults: { val: ~, }\n  path: /search\n  methods: [GET]\n"
  },
  {
    "path": "config/mbin_routes/search_api.yaml",
    "chars": 275,
    "preview": "api_search:\n  controller: App\\Controller\\Api\\Search\\SearchRetrieveApi::searchV1\n  path: /api/search\n  methods: [ GET ]\n "
  },
  {
    "path": "config/mbin_routes/security.yaml",
    "chars": 4556,
    "preview": "app_register:\n  controller: App\\Controller\\Security\\RegisterController\n  path: /register\n  methods: [ GET, POST ]\n\napp_v"
  },
  {
    "path": "config/mbin_routes/tag.yaml",
    "chars": 1185,
    "preview": "tag_overview:\n  controller: App\\Controller\\Tag\\TagOverviewController\n  path: /tag/{name}\n  methods: [GET]\n\ntag_entries:\n"
  },
  {
    "path": "config/mbin_routes/user.yaml",
    "chars": 8226,
    "preview": "user_overview:\n    controller: App\\Controller\\User\\UserFrontController::front\n    path: /u/{username}\n    methods: [GET]"
  },
  {
    "path": "config/mbin_routes/user_api.yaml",
    "chars": 6348,
    "preview": "api_users_collection:\n  controller: App\\Controller\\Api\\User\\UserRetrieveApi::collection\n  path: /api/users\n  methods: [ "
  },
  {
    "path": "config/mbin_serialization/badge.yaml",
    "chars": 112,
    "preview": "App\\DTO\\BadgeDto:\n  attributes:\n    id:\n      groups: [ 'badge_read' ]\n    name:\n      groups: [ 'badge_read' ]\n"
  },
  {
    "path": "config/mbin_serialization/domain.yaml",
    "chars": 241,
    "preview": "App\\DTO\\DomainDto:\n  attributes:\n    name:\n      groups: [ 'domain:collection:get', 'domain:item:get', 'entry:collection"
  },
  {
    "path": "config/mbin_serialization/entry.yaml",
    "chars": 1344,
    "preview": "App\\DTO\\EntryDto:\n  attributes:\n    id:\n      groups: [ 'entry:collection:get', 'entry:item:get', 'entry:comment:collect"
  },
  {
    "path": "config/mbin_serialization/entry_comment.yaml",
    "chars": 1476,
    "preview": "App\\DTO\\EntryCommentDto:\n  attributes:\n    id:\n      groups: [ 'entry:comment:collection:get', 'entry:comment:item:get',"
  },
  {
    "path": "config/mbin_serialization/image.yaml",
    "chars": 1002,
    "preview": "App\\DTO\\ImageDto:\n  attributes:\n    id:\n      groups: [ 'image:get' ]\n    filePath:\n      groups: [ 'image:get','magazin"
  },
  {
    "path": "config/mbin_serialization/magazine.yaml",
    "chars": 1219,
    "preview": "App\\DTO\\MagazineDto:\n  attributes:\n    user:\n      groups: [ 'magazine:item:get', 'magazine:collection:get' ]\n    icon:\n"
  },
  {
    "path": "config/mbin_serialization/post.yaml",
    "chars": 1063,
    "preview": "App\\DTO\\PostDto:\n  attributes:\n    id:\n      groups: [ 'post:collection:get', 'post:item:get', 'post:comment:collection:"
  },
  {
    "path": "config/mbin_serialization/post_comment.yaml",
    "chars": 1364,
    "preview": "App\\DTO\\PostCommentDto:\n  attributes:\n    id:\n      groups: [ 'post:comment:collection:get', 'post:comment:item:get', 's"
  },
  {
    "path": "config/mbin_serialization/user.yaml",
    "chars": 665,
    "preview": "App\\DTO\\UserDto:\n  attributes:\n    email:\n      groups: [ 'user:write' ]\n    plainPassword:\n      groups: [ 'user:write'"
  },
  {
    "path": "config/packages/antispam.yaml",
    "chars": 1879,
    "preview": "#\n# This sample configuration sets up a default anti-spam profile that will already stop a lot of\n# form spam with minim"
  },
  {
    "path": "config/packages/babdev_pagerfanta.yaml",
    "chars": 95,
    "preview": "babdev_pagerfanta:\n  default_view: twig\n  default_twig_template: 'layout/_pagination.html.twig'"
  },
  {
    "path": "config/packages/cache.yaml",
    "chars": 746,
    "preview": "framework:\n    cache:\n        # Unique name of your app: used to compute stable namespaces for cache keys.\n        #pref"
  },
  {
    "path": "config/packages/commonmark.yaml",
    "chars": 821,
    "preview": "parameters:\n    commonmark.configuration:\n        allow_unsafe_links: false\n        html_input: escape\n        max_nesti"
  },
  {
    "path": "config/packages/dama_doctrine_test_bundle.yaml",
    "chars": 158,
    "preview": "when@test:\n    dama_doctrine_test:\n        enable_static_connection: true\n        enable_static_meta_data_cache: true\n  "
  },
  {
    "path": "config/packages/debug.yaml",
    "chars": 261,
    "preview": "when@dev:\n    debug:\n        # Forwards VarDumper Data clones to a centralized server allowing to inspect dumps on CLI o"
  },
  {
    "path": "config/packages/dev/rate_limiter.yaml",
    "chars": 2789,
    "preview": "framework:\n    rate_limiter:\n        anonymous_api_read:\n            policy: \"sliding_window\"\n            limit: 1000\n  "
  },
  {
    "path": "config/packages/doctrine.yaml",
    "chars": 2590,
    "preview": "doctrine:\n    dbal:\n        url: '%env(resolve:DATABASE_URL)%'\n        types:\n            citext: App\\DoctrineExtensions"
  },
  {
    "path": "config/packages/doctrine_migrations.yaml",
    "chars": 268,
    "preview": "doctrine_migrations:\n    migrations_paths:\n        # namespace is arbitrary but should be different from App\\Migrations\n"
  },
  {
    "path": "config/packages/fos_js_routing.yaml",
    "chars": 312,
    "preview": "fos_js_routing:\n  routes_to_expose: [\n    'ajax_fetch_entry',\n    'ajax_fetch_entry_comment',\n    'ajax_fetch_post',\n   "
  },
  {
    "path": "config/packages/framework.yaml",
    "chars": 1757,
    "preview": "# see https://symfony.com/doc/current/reference/configuration/framework.html\nframework:\n    secret: '%env(APP_SECRET)%'\n"
  }
]

// ... and 2320 more files (download for full content)

About this extraction

This page contains the full source code of the MbinOrg/mbin GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 2520 files (8.4 MB), approximately 2.3M tokens, and a symbol index with 8747 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!