├── .ddev ├── commands │ └── redis │ │ └── redis-cli ├── config.mariadb.yaml.override ├── config.mysql.yaml ├── config.postgres.yaml.override ├── config.yaml ├── docker-compose.redis.yaml └── redis │ └── redis.conf ├── .editorconfig ├── .env.docker ├── .env.example ├── .env.testing ├── .envrc ├── .gitattributes ├── .gitignore ├── .markdownlint.json ├── .node-version ├── .shellcheckrc ├── .vscode ├── extensions.json └── settings.json ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── app ├── AccountInterstitial.php ├── AccountLog.php ├── Activity.php ├── Auth │ └── BearerTokenResponse.php ├── Avatar.php ├── Bookmark.php ├── Circle.php ├── CircleProfile.php ├── Collection.php ├── CollectionItem.php ├── Comment.php ├── Console │ ├── Commands │ │ ├── AccountPostCountStatUpdate.php │ │ ├── AddUserDomainBlock.php │ │ ├── AdminInviteCommand.php │ │ ├── AvatarDefaultMigration.php │ │ ├── AvatarStorage.php │ │ ├── AvatarStorageDeepClean.php │ │ ├── AvatarSync.php │ │ ├── BackupToCloud.php │ │ ├── BannedEmailCheck.php │ │ ├── CaptchaToggleCommand.php │ │ ├── CatchUnoptimizedMedia.php │ │ ├── CloudMediaMigrate.php │ │ ├── CuratedOnboardingCommand.php │ │ ├── DatabaseSessionGarbageCollector.php │ │ ├── DeleteRemoteProfile.php │ │ ├── DeleteUserDomainBlock.php │ │ ├── ExportLanguages.php │ │ ├── FailedJobGC.php │ │ ├── FetchMissingMediaMimeType.php │ │ ├── FixDuplicateProfiles.php │ │ ├── FixHashtags.php │ │ ├── FixLikes.php │ │ ├── FixMediaDriver.php │ │ ├── FixMissingUserProfile.php │ │ ├── FixRemotePostCount.php │ │ ├── FixStatusCount.php │ │ ├── FixUsernames.php │ │ ├── GenerateInstanceActor.php │ │ ├── HashtagCachedCountUpdate.php │ │ ├── HashtagRelatedGenerate.php │ │ ├── ImportCities.php │ │ ├── ImportEmojis.php │ │ ├── ImportRemoveDeletedAccounts.php │ │ ├── ImportUploadCleanStorage.php │ │ ├── ImportUploadGarbageCollection.php │ │ ├── ImportUploadMediaToCloudStorage.php │ │ ├── Installer.php │ │ ├── InstanceManager.php │ │ ├── InstanceUpdateTotalLocalPosts.php │ │ ├── Localization.php │ │ ├── MediaCloudUrlRewrite.php │ │ ├── MediaFix.php │ │ ├── MediaGarbageCollector.php │ │ ├── MediaReplaceDomainCommand.php │ │ ├── MediaS3GarbageCollector.php │ │ ├── NotificationEpochUpdate.php │ │ ├── PasswordResetGC.php │ │ ├── PushGatewayRefresh.php │ │ ├── ReclaimUsername.php │ │ ├── RegenerateThumbnails.php │ │ ├── SeedFollows.php │ │ ├── SendUpdateActor.php │ │ ├── SoftwareUpdateRefresh.php │ │ ├── StatusDedupe.php │ │ ├── StoryGC.php │ │ ├── TransformImports.php │ │ ├── UpdateCommand.php │ │ ├── UserAccountDelete.php │ │ ├── UserAdmin.php │ │ ├── UserCreate.php │ │ ├── UserDelete.php │ │ ├── UserRegistrationMagicLink.php │ │ ├── UserShow.php │ │ ├── UserSuspend.php │ │ ├── UserTable.php │ │ ├── UserToggle2FA.php │ │ ├── UserUnsuspend.php │ │ ├── UserVerifyEmail.php │ │ ├── VideoThumbnail.php │ │ └── WeeklyInstanceScan.php │ └── Kernel.php ├── Contact.php ├── DirectMessage.php ├── DiscoverCategory.php ├── DiscoverCategoryHashtag.php ├── EmailVerification.php ├── Events │ ├── LiveStream │ │ ├── BanUser.php │ │ ├── DeleteChatComment.php │ │ ├── NewChatComment.php │ │ ├── PinChatMessage.php │ │ ├── StreamEnd.php │ │ ├── StreamStart.php │ │ └── UnpinChatMessage.php │ ├── NewMention.php │ └── Notification │ │ └── NewPublicPost.php ├── Exceptions │ └── Handler.php ├── FailedJob.php ├── FollowRequest.php ├── Follower.php ├── HasSnowflakePrimary.php ├── Hashtag.php ├── HashtagFollow.php ├── Http │ ├── Controllers │ │ ├── AccountController.php │ │ ├── AccountInterstitialController.php │ │ ├── Admin │ │ │ ├── AdminAutospamController.php │ │ │ ├── AdminDirectoryController.php │ │ │ ├── AdminDiscoverController.php │ │ │ ├── AdminGroupsController.php │ │ │ ├── AdminHashtagsController.php │ │ │ ├── AdminInstanceController.php │ │ │ ├── AdminMediaController.php │ │ │ ├── AdminReportController.php │ │ │ ├── AdminSettingsController.php │ │ │ ├── AdminSupportController.php │ │ │ └── AdminUserController.php │ │ ├── AdminController.php │ │ ├── AdminCuratedRegisterController.php │ │ ├── AdminInviteController.php │ │ ├── AdminShadowFilterController.php │ │ ├── Api │ │ │ ├── AdminApiController.php │ │ │ ├── ApiController.php │ │ │ ├── ApiV1Controller.php │ │ │ ├── ApiV1Dot1Controller.php │ │ │ ├── ApiV2Controller.php │ │ │ ├── BaseApiController.php │ │ │ ├── InstanceApiController.php │ │ │ └── V1 │ │ │ │ ├── Admin │ │ │ │ └── DomainBlocksController.php │ │ │ │ ├── DomainBlockController.php │ │ │ │ └── TagsController.php │ │ ├── ApiController.php │ │ ├── AppRegisterController.php │ │ ├── Auth │ │ │ ├── ForgotPasswordController.php │ │ │ ├── LoginController.php │ │ │ ├── RegisterController.php │ │ │ └── ResetPasswordController.php │ │ ├── AuthorizeInteractionController.php │ │ ├── AvatarController.php │ │ ├── BookmarkController.php │ │ ├── CircleController.php │ │ ├── CircleProfileController.php │ │ ├── CollectionController.php │ │ ├── CollectionItemController.php │ │ ├── CommentController.php │ │ ├── ComposeController.php │ │ ├── ContactController.php │ │ ├── Controller.php │ │ ├── CuratedRegisterController.php │ │ ├── CustomFilterController.php │ │ ├── CustomFilterKeywordController.php │ │ ├── CustomFilterStatusController.php │ │ ├── DeckController.php │ │ ├── DirectMessageController.php │ │ ├── DiscoverCategoryController.php │ │ ├── DiscoverCategoryHashtagController.php │ │ ├── DiscoverController.php │ │ ├── FederationController.php │ │ ├── FollowerController.php │ │ ├── GroupController.php │ │ ├── GroupFederationController.php │ │ ├── GroupPostController.php │ │ ├── Groups │ │ │ ├── CreateGroupsController.php │ │ │ ├── GroupsAdminController.php │ │ │ ├── GroupsApiController.php │ │ │ ├── GroupsCommentController.php │ │ │ ├── GroupsDiscoverController.php │ │ │ ├── GroupsFeedController.php │ │ │ ├── GroupsMemberController.php │ │ │ ├── GroupsMetaController.php │ │ │ ├── GroupsNotificationsController.php │ │ │ ├── GroupsPostController.php │ │ │ ├── GroupsSearchController.php │ │ │ └── GroupsTopicController.php │ │ ├── HashtagController.php │ │ ├── HashtagFollowController.php │ │ ├── HealthCheckController.php │ │ ├── Import │ │ │ ├── Instagram.php │ │ │ └── Mastodon.php │ │ ├── ImportController.php │ │ ├── ImportPostController.php │ │ ├── InstallController.php │ │ ├── InstanceActorController.php │ │ ├── InternalApiController.php │ │ ├── LandingController.php │ │ ├── LikeController.php │ │ ├── LiveStreamController.php │ │ ├── MediaBlocklistController.php │ │ ├── MediaController.php │ │ ├── MediaTagController.php │ │ ├── MicroController.php │ │ ├── MobileController.php │ │ ├── NewsroomController.php │ │ ├── NotificationController.php │ │ ├── OAuth │ │ │ └── OobAuthorizationController.php │ │ ├── PageController.php │ │ ├── ParentalControlsController.php │ │ ├── PixelfedDirectoryController.php │ │ ├── PlaceController.php │ │ ├── PollController.php │ │ ├── PortfolioController.php │ │ ├── ProfileAliasController.php │ │ ├── ProfileController.php │ │ ├── ProfileMigrationController.php │ │ ├── ProfileSponsorController.php │ │ ├── PublicApiController.php │ │ ├── RemoteAuthController.php │ │ ├── RemoteOidcController.php │ │ ├── ReportController.php │ │ ├── SearchController.php │ │ ├── SeasonalController.php │ │ ├── Settings │ │ │ ├── ExportSettings.php │ │ │ ├── HomeSettings.php │ │ │ ├── LabsSettings.php │ │ │ ├── PrivacySettings.php │ │ │ ├── RelationshipSettings.php │ │ │ └── SecuritySettings.php │ │ ├── SettingsController.php │ │ ├── SiteController.php │ │ ├── SoftwareUpdateController.php │ │ ├── SpaController.php │ │ ├── StatusController.php │ │ ├── StatusEditController.php │ │ ├── Stories │ │ │ └── StoryApiV1Controller.php │ │ ├── StoryComposeController.php │ │ ├── StoryController.php │ │ ├── TimelineController.php │ │ ├── UIKitController.php │ │ ├── UserAppSettingsController.php │ │ ├── UserEmailForgotController.php │ │ ├── UserInviteController.php │ │ └── UserRolesController.php │ ├── Kernel.php │ ├── Middleware │ │ ├── AccountInterstitial.php │ │ ├── Admin.php │ │ ├── Api │ │ │ └── Admin.php │ │ ├── DangerZone.php │ │ ├── DeprecatedEndpoint.php │ │ ├── EmailVerificationCheck.php │ │ ├── EncryptCookies.php │ │ ├── FrameGuard.php │ │ ├── Localization.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── RestrictedAccess.php │ │ ├── TrimStrings.php │ │ ├── TrustProxies.php │ │ ├── TwoFactorAuth.php │ │ └── VerifyCsrfToken.php │ ├── Requests │ │ ├── ProfileMigrationStoreRequest.php │ │ ├── Status │ │ │ └── StoreStatusEditRequest.php │ │ └── StoreUserAppSettings.php │ └── Resources │ │ ├── Admin │ │ └── AdminModeratedProfileResource.php │ │ ├── AdminHashtag.php │ │ ├── AdminInstance.php │ │ ├── AdminProfile.php │ │ ├── AdminRemoteReport.php │ │ ├── AdminReport.php │ │ ├── AdminSpamReport.php │ │ ├── AdminUser.php │ │ ├── DirectoryProfile.php │ │ ├── ImportStatus.php │ │ ├── MastoApi │ │ ├── Admin │ │ │ └── DomainBlockResource.php │ │ └── FollowedTagResource.php │ │ ├── StatusStateless.php │ │ ├── StoryView.php │ │ └── UserAppSettingsResource.php ├── ImportData.php ├── ImportJob.php ├── Instance.php ├── Jobs │ ├── AdminPipeline │ │ └── AdminProfileActionPipeline.php │ ├── AutospamPipeline │ │ ├── AutospamPretrainNonSpamPipeline.php │ │ ├── AutospamPretrainPipeline.php │ │ └── AutospamUpdateCachedDataPipeline.php │ ├── AvatarPipeline │ │ ├── AvatarOptimize.php │ │ ├── AvatarStorageCleanup.php │ │ ├── AvatarStorageLargePurge.php │ │ ├── CreateAvatar.php │ │ ├── RemoteAvatarFetch.php │ │ └── RemoteAvatarFetchFromUrl.php │ ├── CommentPipeline │ │ └── CommentPipeline.php │ ├── ContactPipeline │ │ └── ContactPipeline.php │ ├── CuratedOnboarding │ │ └── CuratedOnboardingNotifyAdminNewApplicationPipeline.php │ ├── DeletePipeline │ │ ├── DeleteAccountPipeline.php │ │ ├── DeleteRemoteProfilePipeline.php │ │ ├── DeleteRemoteStatusPipeline.php │ │ └── FanoutDeletePipeline.php │ ├── DirectPipeline │ │ ├── DirectDeletePipeline.php │ │ └── DirectDeliverPipeline.php │ ├── FollowPipeline │ │ ├── FollowAcceptPipeline.php │ │ ├── FollowActivityPubDeliver.php │ │ ├── FollowPipeline.php │ │ ├── FollowRejectPipeline.php │ │ ├── FollowServiceWarmCache.php │ │ ├── FollowServiceWarmCacheLargeIngestPipeline.php │ │ └── UnfollowPipeline.php │ ├── GroupPipeline │ │ ├── GroupCommentPipeline.php │ │ ├── GroupMediaPipeline.php │ │ ├── GroupMemberInvite.php │ │ ├── JoinApproved.php │ │ ├── JoinRejected.php │ │ ├── LikePipeline.php │ │ ├── NewStatusPipeline.php │ │ └── UnlikePipeline.php │ ├── GroupsPipeline │ │ ├── DeleteCommentPipeline.php │ │ ├── ImageResizePipeline.php │ │ ├── ImageS3DeletePipeline.php │ │ ├── ImageS3UploadPipeline.php │ │ ├── MemberJoinApprovedPipeline.php │ │ ├── MemberJoinRejectedPipeline.php │ │ ├── NewCommentPipeline.php │ │ └── NewPostPipeline.php │ ├── HomeFeedPipeline │ │ ├── FeedFollowPipeline.php │ │ ├── FeedInsertPipeline.php │ │ ├── FeedInsertRemotePipeline.php │ │ ├── FeedRemoveDomainPipeline.php │ │ ├── FeedRemovePipeline.php │ │ ├── FeedRemoveRemotePipeline.php │ │ ├── FeedUnfollowPipeline.php │ │ ├── FeedWarmCachePipeline.php │ │ ├── HashtagInsertFanoutPipeline.php │ │ ├── HashtagRemoveFanoutPipeline.php │ │ └── HashtagUnfollowPipeline.php │ ├── ImageOptimizePipeline │ │ ├── ImageOptimize.php │ │ ├── ImageResize.php │ │ ├── ImageThumbnail.php │ │ └── ImageUpdate.php │ ├── ImportPipeline │ │ ├── ImportInstagram.php │ │ └── ImportMediaToCloudPipeline.php │ ├── InboxPipeline │ │ ├── ActivityHandler.php │ │ ├── DeleteWorker.php │ │ ├── InboxValidator.php │ │ └── InboxWorker.php │ ├── InstancePipeline │ │ ├── FetchNodeinfoPipeline.php │ │ └── InstanceCrawlPipeline.php │ ├── InternalPipeline │ │ └── NotificationEpochUpdatePipeline.php │ ├── LikePipeline │ │ ├── LikePipeline.php │ │ └── UnlikePipeline.php │ ├── MediaPipeline │ │ ├── MediaDeletePipeline.php │ │ ├── MediaFixLocalFilesystemCleanupPipeline.php │ │ ├── MediaStoragePipeline.php │ │ └── MediaSyncLicensePipeline.php │ ├── MentionPipeline │ │ └── MentionPipeline.php │ ├── ModPipeline │ │ └── HandleSpammerPipeline.php │ ├── MovePipeline │ │ ├── CleanupLegacyAccountMovePipeline.php │ │ ├── MoveMigrateFollowersPipeline.php │ │ ├── MoveSendFollowPipeline.php │ │ ├── MoveSendUndoFollowPipeline.php │ │ ├── ProcessMovePipeline.php │ │ └── UnfollowLegacyAccountMovePipeline.php │ ├── NotificationPipeline │ │ └── NotificationWarmUserCache.php │ ├── ParentalControlsPipeline │ │ └── DispatchChildInvitePipeline.php │ ├── ProfilePipeline │ │ ├── DecrementPostCount.php │ │ ├── HandleUpdateActivity.php │ │ ├── IncrementPostCount.php │ │ ├── ProfileMigrationDeliverMoveActivityPipeline.php │ │ ├── ProfileMigrationMoveFollowersPipeline.php │ │ ├── ProfilePurgeFollowersByDomain.php │ │ └── ProfilePurgeNotificationsByDomain.php │ ├── PushNotificationPipeline │ │ ├── FollowPushNotifyPipeline.php │ │ ├── LikePushNotifyPipeline.php │ │ └── MentionPushNotifyPipeline.php │ ├── RemoteFollowPipeline │ │ ├── RemoteFollowImportRecent.php │ │ └── RemoteFollowPipeline.php │ ├── ReportPipeline │ │ ├── AutospamNotifyAdminViaEmail.php │ │ └── ReportNotifyAdminViaEmail.php │ ├── SharePipeline │ │ ├── SharePipeline.php │ │ └── UndoSharePipeline.php │ ├── StatusPipeline │ │ ├── NewStatusPipeline.php │ │ ├── RemoteStatusDelete.php │ │ ├── StatusActivityPubDeliver.php │ │ ├── StatusDelete.php │ │ ├── StatusEntityLexer.php │ │ ├── StatusLocalUpdateActivityPubDeliverPipeline.php │ │ ├── StatusRemoteUpdatePipeline.php │ │ ├── StatusReplyPipeline.php │ │ └── StatusTagsPipeline.php │ ├── StoryPipeline │ │ ├── StoryDelete.php │ │ ├── StoryExpire.php │ │ ├── StoryFanout.php │ │ ├── StoryFetch.php │ │ ├── StoryReactionDeliver.php │ │ ├── StoryReplyDeliver.php │ │ ├── StoryRotateMedia.php │ │ └── StoryViewDeliver.php │ └── VideoPipeline │ │ ├── VideoHlsPipeline.php │ │ ├── VideoOptimize.php │ │ ├── VideoPostProcess.php │ │ ├── VideoThumbnail.php │ │ └── VideoThumbnailToCloudPipeline.php ├── Like.php ├── Listeners │ ├── AuthLogin.php │ └── LogFailedLogin.php ├── Mail │ ├── AdminMessage.php │ ├── AdminMessageResponse.php │ ├── AdminNewAutospam.php │ ├── AdminNewReport.php │ ├── ConfirmAppEmail.php │ ├── ConfirmEmail.php │ ├── ContactAdmin.php │ ├── CuratedRegisterAcceptUser.php │ ├── CuratedRegisterConfirmEmail.php │ ├── CuratedRegisterNotifyAdmin.php │ ├── CuratedRegisterNotifyAdminUserResponse.php │ ├── CuratedRegisterRejectUser.php │ ├── CuratedRegisterRequestDetailsFromUser.php │ ├── CuratedRegisterSendMessage.php │ ├── EmailChange.php │ ├── InAppRegisterEmailVerify.php │ ├── ParentChildInvite.php │ ├── PasswordChange.php │ └── UserEmailForgotReminder.php ├── Media.php ├── MediaBlocklist.php ├── MediaTag.php ├── Mention.php ├── ModLog.php ├── Models │ ├── AdminInvite.php │ ├── AdminShadowFilter.php │ ├── AppRegister.php │ ├── AutospamCustomTokens.php │ ├── ConfigCache.php │ ├── Conversation.php │ ├── CuratedRegister.php │ ├── CuratedRegisterActivity.php │ ├── CuratedRegisterTemplate.php │ ├── CustomEmoji.php │ ├── CustomFilter.php │ ├── CustomFilterKeyword.php │ ├── CustomFilterStatus.php │ ├── DefaultDomainBlock.php │ ├── Group.php │ ├── GroupActivityGraph.php │ ├── GroupBlock.php │ ├── GroupCategory.php │ ├── GroupComment.php │ ├── GroupEvent.php │ ├── GroupHashtag.php │ ├── GroupInteraction.php │ ├── GroupInvitation.php │ ├── GroupLike.php │ ├── GroupLimit.php │ ├── GroupMedia.php │ ├── GroupMember.php │ ├── GroupPost.php │ ├── GroupPostHashtag.php │ ├── GroupReport.php │ ├── GroupRole.php │ ├── GroupStore.php │ ├── HashtagRelated.php │ ├── ImportPost.php │ ├── InstanceActor.php │ ├── LiveStream.php │ ├── ModeratedProfile.php │ ├── ParentalControls.php │ ├── Poll.php │ ├── PollVote.php │ ├── Portfolio.php │ ├── ProfileAlias.php │ ├── ProfileMigration.php │ ├── RemoteAuth.php │ ├── RemoteAuthInstance.php │ ├── RemoteReport.php │ ├── StatusEdit.php │ ├── UserAppSettings.php │ ├── UserDomainBlock.php │ ├── UserEmailForgot.php │ ├── UserOidcMapping.php │ ├── UserPronoun.php │ └── UserRoles.php ├── Newsroom.php ├── Notification.php ├── OauthClient.php ├── Observers │ ├── AvatarObserver.php │ ├── FollowerObserver.php │ ├── HashtagFollowObserver.php │ ├── LikeObserver.php │ ├── ModLogObserver.php │ ├── NotificationObserver.php │ ├── ProfileObserver.php │ ├── StatusHashtagObserver.php │ ├── StatusObserver.php │ ├── UserFilterObserver.php │ └── UserObserver.php ├── Page.php ├── Place.php ├── Policies │ └── CustomFilterPolicy.php ├── Profile.php ├── ProfileSponsor.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ ├── HorizonServiceProvider.php │ ├── PassportServiceProvider.php │ ├── RouteServiceProvider.php │ └── TelescopeServiceProvider.php ├── Report.php ├── ReportComment.php ├── ReportLog.php ├── Rules │ ├── EmailNotBanned.php │ ├── ExpoPushTokenRule.php │ ├── MaxMultiLine.php │ ├── PixelfedUsername.php │ ├── ValidUrl.php │ └── Webfinger.php ├── Services │ ├── Account │ │ ├── AccountAppSettingsService.php │ │ ├── AccountStatService.php │ │ └── RemoteAuthService.php │ ├── AccountService.php │ ├── ActivityPubDeliveryService.php │ ├── ActivityPubFetchService.php │ ├── AdminSettingsService.php │ ├── AdminShadowFilterService.php │ ├── AdminStatsService.php │ ├── AutolinkService.php │ ├── AutospamService.php │ ├── AvatarService.php │ ├── BookmarkService.php │ ├── BouncerService.php │ ├── CollectionService.php │ ├── ConfigCacheService.php │ ├── CustomEmojiService.php │ ├── DiscoverService.php │ ├── DomainService.php │ ├── EmailService.php │ ├── Federation │ │ └── ActiveSharedInboxService.php │ ├── FetchCacheService.php │ ├── FilesystemService.php │ ├── FollowerService.php │ ├── GroupFeedService.php │ ├── GroupPostService.php │ ├── GroupService.php │ ├── Groups │ │ ├── GroupAccountService.php │ │ ├── GroupActivityPubService.php │ │ ├── GroupCommentService.php │ │ ├── GroupFeedService.php │ │ ├── GroupHashtagService.php │ │ ├── GroupMediaService.php │ │ ├── GroupPostService.php │ │ └── GroupsLikeService.php │ ├── HashidService.php │ ├── HashtagFollowService.php │ ├── HashtagRelatedService.php │ ├── HashtagService.php │ ├── HomeTimelineService.php │ ├── ImportService.php │ ├── InstanceService.php │ ├── Internal │ │ ├── BeagleService.php │ │ └── SoftwareUpdateService.php │ ├── LandingService.php │ ├── LikeService.php │ ├── LiveStreamService.php │ ├── MarkerService.php │ ├── Media │ │ └── MediaHlsService.php │ ├── MediaBlocklistService.php │ ├── MediaPathService.php │ ├── MediaService.php │ ├── MediaStorageService.php │ ├── MediaTagService.php │ ├── ModLogService.php │ ├── NetworkTimelineService.php │ ├── NodeinfoService.php │ ├── NotificationAppGatewayService.php │ ├── NotificationService.php │ ├── PlaceService.php │ ├── PollService.php │ ├── ProfileService.php │ ├── ProfileStatusService.php │ ├── PronounService.php │ ├── PublicTimelineService.php │ ├── PushNotificationService.php │ ├── ReblogService.php │ ├── RelationshipService.php │ ├── ResilientMediaStorageService.php │ ├── SearchApiV2Service.php │ ├── SnowflakeService.php │ ├── Status │ │ └── UpdateStatusService.php │ ├── StatusHashtagService.php │ ├── StatusLabelService.php │ ├── StatusMentionService.php │ ├── StatusService.php │ ├── StoryService.php │ ├── SuggestionService.php │ ├── TrendingHashtagService.php │ ├── UserFilterService.php │ ├── UserOidcService.php │ ├── UserRoleService.php │ ├── UserStorageService.php │ └── WebfingerService.php ├── Status.php ├── StatusArchived.php ├── StatusHashtag.php ├── StatusView.php ├── Story.php ├── StoryItem.php ├── StoryReaction.php ├── StoryView.php ├── Transformer │ ├── ActivityPub │ │ ├── ProfileOutbox.php │ │ ├── ProfileTransformer.php │ │ ├── StatusTransformer.php │ │ └── Verb │ │ │ ├── AcceptFollow.php │ │ │ ├── Announce.php │ │ │ ├── CreateNote.php │ │ │ ├── CreateQuestion.php │ │ │ ├── CreateStory.php │ │ │ ├── DeleteActor.php │ │ │ ├── DeleteNote.php │ │ │ ├── DeleteStory.php │ │ │ ├── Follow.php │ │ │ ├── Like.php │ │ │ ├── Move.php │ │ │ ├── Note.php │ │ │ ├── Question.php │ │ │ ├── RejectFollow.php │ │ │ ├── StoryVerb.php │ │ │ ├── UndoAnnounce.php │ │ │ ├── UndoLike.php │ │ │ └── UpdateNote.php │ └── Api │ │ ├── AccountTransformer.php │ │ ├── AccountWithStatusesTransformer.php │ │ ├── ApplicationTransformer.php │ │ ├── ContextTransformer.php │ │ ├── DirectMessageTransformer.php │ │ ├── EmojiTransformer.php │ │ ├── FilterTransformer.php │ │ ├── GroupPostTransformer.php │ │ ├── HashtagTransformer.php │ │ ├── InstanceTransformer.php │ │ ├── Mastodon │ │ └── v1 │ │ │ ├── AccountTransformer.php │ │ │ ├── HashtagTransformer.php │ │ │ ├── MediaTransformer.php │ │ │ ├── MentionTransformer.php │ │ │ ├── NotificationTransformer.php │ │ │ └── StatusTransformer.php │ │ ├── MediaDraftTransformer.php │ │ ├── MediaTransformer.php │ │ ├── MentionTransformer.php │ │ ├── NotificationTransformer.php │ │ ├── RelationshipTransformer.php │ │ ├── ResultsTransformer.php │ │ ├── StatusHashtagTransformer.php │ │ ├── StatusStatelessTransformer.php │ │ ├── StatusTransformer.php │ │ ├── StoryItemTransformer.php │ │ └── StoryTransformer.php ├── UIKit.php ├── User.php ├── UserDevice.php ├── UserFilter.php ├── UserInvite.php ├── UserSetting.php ├── Util │ ├── ActivityPub │ │ ├── DiscoverActor.php │ │ ├── Helpers.php │ │ ├── HttpSignature.php │ │ ├── Inbox.php │ │ ├── Outbox.php │ │ └── Validator │ │ │ ├── Accept.php │ │ │ ├── Add.php │ │ │ ├── Announce.php │ │ │ ├── Follow.php │ │ │ ├── Like.php │ │ │ ├── MoveValidator.php │ │ │ ├── RejectValidator.php │ │ │ ├── StoryValidator.php │ │ │ ├── UndoFollow.php │ │ │ └── UpdatePersonValidator.php │ ├── Blurhash │ │ ├── AC.php │ │ ├── Base83.php │ │ ├── Blurhash.php │ │ ├── Color.php │ │ └── DC.php │ ├── Lexer │ │ ├── Autolink.php │ │ ├── Bearcap.php │ │ ├── Classifier.php │ │ ├── Extractor.php │ │ ├── Hashtag.php │ │ ├── HitHighlighter.php │ │ ├── LooseAutolink.php │ │ ├── Nickname.php │ │ ├── PrettyNumber.php │ │ ├── Regex.php │ │ ├── RestrictedNames.php │ │ ├── StringUtils.php │ │ └── Validator.php │ ├── Localization │ │ └── Localization.php │ ├── Media │ │ ├── Blurhash.php │ │ ├── Filter.php │ │ ├── Image.php │ │ └── License.php │ ├── RateLimit │ │ └── User.php │ ├── Sentiment │ │ └── Bouncer.php │ ├── Site │ │ ├── Config.php │ │ └── Nodeinfo.php │ └── Webfinger │ │ ├── Webfinger.php │ │ └── WebfingerUrl.php └── helpers.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── api.php ├── app.php ├── auth.php ├── autospam.php ├── backup.php ├── broadcasting.php ├── cache.php ├── captcha.php ├── cors.php ├── costar.php ├── database.php ├── debugbar.php ├── dotenv-editor.php ├── exp.php ├── federation.php ├── filesystems.php ├── groups.php ├── hashids.php ├── hashing.php ├── horizon.php ├── image-optimizer.php ├── image.php ├── import.php ├── instance.php ├── laravel-ffmpeg.php ├── ldap.php ├── livestreaming.php ├── logging.php ├── mail.php ├── media.php ├── passport.php ├── pixelfed.php ├── portfolio.php ├── pulse.php ├── purify.php ├── queue.php ├── remote-auth.php ├── routes.php ├── security.php ├── services.php ├── session.php ├── snowflake.php ├── telescope.php ├── trending.php ├── trustedproxy.php ├── view.php ├── webpush.php └── websockets.php ├── crowdin.yml ├── database ├── .gitignore ├── factories │ └── UserFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2016_06_01_000001_create_oauth_auth_codes_table.php │ ├── 2016_06_01_000002_create_oauth_access_tokens_table.php │ ├── 2016_06_01_000003_create_oauth_refresh_tokens_table.php │ ├── 2016_06_01_000004_create_oauth_clients_table.php │ ├── 2016_06_01_000005_create_oauth_personal_access_clients_table.php │ ├── 2018_04_16_000059_create_sessions_table.php │ ├── 2018_04_16_002611_create_profiles_table.php │ ├── 2018_04_16_005848_create_statuses_table.php │ ├── 2018_04_16_011918_create_media_table.php │ ├── 2018_04_17_012812_create_likes_table.php │ ├── 2018_04_18_021047_create_followers_table.php │ ├── 2018_04_18_044421_create_comments_table.php │ ├── 2018_04_22_233721_create_web_subs_table.php │ ├── 2018_04_26_000057_create_import_datas_table.php │ ├── 2018_04_26_003259_create_import_jobs_table.php │ ├── 2018_04_30_044507_create_jobs_table.php │ ├── 2018_04_30_044539_create_failed_jobs_table.php │ ├── 2018_05_04_054007_create_reports_table.php │ ├── 2018_05_06_214815_create_hashtags_table.php │ ├── 2018_05_06_215006_create_status_hashtags_table.php │ ├── 2018_05_07_021835_create_avatars_table.php │ ├── 2018_05_07_025743_create_notifications_table.php │ ├── 2018_05_31_043327_create_bookmarks_table.php │ ├── 2018_06_04_061435_update_notifications_table_add_polymorphic_relationship.php │ ├── 2018_06_08_003624_create_mentions_table.php │ ├── 2018_06_11_030049_add_filters_to_media_table.php │ ├── 2018_06_14_001318_add_soft_deletes_to_models.php │ ├── 2018_06_14_041422_create_email_verifications_table.php │ ├── 2018_06_22_062621_create_report_comments_table.php │ ├── 2018_06_22_062628_create_report_logs_table.php │ ├── 2018_07_05_010303_create_account_logs_table.php │ ├── 2018_07_12_054015_create_user_settings_table.php │ ├── 2018_07_15_011916_add_2fa_to_users_table.php │ ├── 2018_07_15_013106_create_user_filters_table.php │ ├── 2018_08_08_100000_create_telescope_entries_table.php │ ├── 2018_08_12_042648_update_status_table_change_caption_to_text.php │ ├── 2018_08_22_022306_update_settings_table.php │ ├── 2018_08_27_004653_update_media_table_add_alt_text.php │ ├── 2018_09_02_042235_create_follow_requests_table.php │ ├── 2018_09_02_043240_update_profile_table_add_ap_urls.php │ ├── 2018_09_02_043609_create_instances_table.php │ ├── 2018_09_10_024252_update_import_datas_table.php │ ├── 2018_09_11_202435_create_activities_table.php │ ├── 2018_09_18_043334_add_cw_desc_to_status.php │ ├── 2018_09_19_060554_create_stories_table.php │ ├── 2018_09_19_060611_create_story_reactions_table.php │ ├── 2018_09_27_040314_create_collections_table.php │ ├── 2018_09_30_051108_create_direct_messages_table.php │ ├── 2018_10_02_040917_create_collection_items_table.php │ ├── 2018_10_09_043717_update_status_visibility_defaults.php │ ├── 2018_10_17_033327_update_status_add_scope_column.php │ ├── 2018_10_17_233623_update_follower_table_add_remote_flags.php │ ├── 2018_10_18_035552_update_media_add_alt_text.php │ ├── 2018_10_25_030944_update_profile_table.php │ ├── 2018_12_01_020238_add_type_to_status_table.php │ ├── 2018_12_22_055940_add_account_status_to_profiles_table.php │ ├── 2018_12_24_032921_add_delete_after_to_user_table.php │ ├── 2018_12_30_065102_update_profiles_table_use_text_for_bio.php │ ├── 2019_01_11_005556_update_profiles_table.php │ ├── 2019_01_12_054413_stories.php │ ├── 2019_01_22_030129_create_pages_table.php │ ├── 2019_02_01_023357_add_remote_to_avatars_table.php │ ├── 2019_02_07_004642_create_discover_categories_table.php │ ├── 2019_02_07_021214_create_discover_category_hashtags_table.php │ ├── 2019_02_08_192219_create_websockets_statistics_entries_table.php │ ├── 2019_02_09_045935_create_circles_table.php │ ├── 2019_02_09_045956_create_circle_profiles_table.php │ ├── 2019_02_13_195702_add_indexes.php │ ├── 2019_02_13_221138_add_soft_delete_indexes.php │ ├── 2019_02_15_033323_create_user_invites_table.php │ ├── 2019_03_02_023245_add_profile_id_to_status_hashtags_table.php │ ├── 2019_03_06_065528_create_user_devices_table.php │ ├── 2019_03_12_043935_add_snowflakeids_to_users_table.php │ ├── 2019_03_31_191216_add_replies_count_to_statuses_table.php │ ├── 2019_04_16_184644_add_layout_to_profiles_table.php │ ├── 2019_04_25_200411_add_snowflake_ids_to_collections_table.php │ ├── 2019_04_28_024733_add_suggestions_to_profiles_table.php │ ├── 2019_05_04_174911_add_header_to_profiles_table.php │ ├── 2019_06_06_032316_create_contacts_table.php │ ├── 2019_06_16_051157_add_profile_ids_to_users_table.php │ ├── 2019_07_05_034644_create_hashtag_follows_table.php │ ├── 2019_07_08_045824_add_status_visibility_to_status_hashtags_table.php │ ├── 2019_07_11_234836_create_profile_sponsors_table.php │ ├── 2019_07_16_010525_remove_web_subs_table.php │ ├── 2019_08_07_184030_create_places_table.php │ ├── 2019_08_12_074612_add_unique_to_statuses_table.php │ ├── 2019_09_09_032757_add_object_id_to_statuses_table.php │ ├── 2019_09_21_015556_add_language_to_users_table.php │ ├── 2019_12_10_023604_create_newsroom_table.php │ ├── 2019_12_25_042317_update_stories_table.php │ ├── 2020_02_14_063209_create_mod_logs_table.php │ ├── 2020_04_11_045459_add_fetched_at_to_profiles_table.php │ ├── 2020_04_13_045435_create_uikit_table.php │ ├── 2020_06_30_180159_create_media_tags_table.php │ ├── 2020_07_25_230100_create_media_blocklists_table.php │ ├── 2020_08_18_022520_add_remote_url_to_stories_table.php │ ├── 2020_11_14_221947_add_type_to_direct_messages_table.php │ ├── 2020_12_01_073200_add_indexes_to_likes_table.php │ ├── 2020_12_03_050018_create_account_interstitials_table.php │ ├── 2020_12_13_203138_add_uuids_to_failed_jobs_table.php │ ├── 2020_12_13_203646_add_providers_column_to_oauth_clients_table.php │ ├── 2020_12_14_103423_create_login_links_table.php │ ├── 2020_12_24_063410_create_status_views_table.php │ ├── 2020_12_25_220825_add_status_profile_id_to_likes_table.php │ ├── 2020_12_27_013953_add_text_column_to_media_table.php │ ├── 2020_12_27_040951_add_skip_optimize_to_media_table.php │ ├── 2020_12_28_012026_create_status_archiveds_table.php │ ├── 2020_12_30_070905_add_last_active_at_to_users_table.php │ ├── 2021_01_14_034521_add_cache_locks_table.php │ ├── 2021_01_15_050602_create_instance_actors_table.php │ ├── 2021_01_25_011355_add_cdn_url_to_avatars_table.php │ ├── 2021_04_24_045522_add_active_to_stories_table.php │ ├── 2021_04_28_060450_create_config_caches_table.php │ ├── 2021_05_12_042153_create_user_pronouns_table.php │ ├── 2021_07_23_062326_add_compose_settings_to_user_settings_table.php │ ├── 2021_07_29_014835_create_polls_table.php │ ├── 2021_07_29_014849_create_poll_votes_table.php │ ├── 2021_08_04_095125_create_groups_table.php │ ├── 2021_08_04_095143_create_group_members_table.php │ ├── 2021_08_04_095238_create_group_posts_table.php │ ├── 2021_08_04_100435_create_group_roles_table.php │ ├── 2021_08_16_072457_create_group_invitations_table.php │ ├── 2021_08_16_100034_create_group_interactions_table.php │ ├── 2021_08_17_073839_create_group_reports_table.php │ ├── 2021_08_23_062246_update_stories_table_fix_expires_at_column.php │ ├── 2021_08_30_050137_add_software_column_to_instances_table.php │ ├── 2021_09_26_112423_create_group_blocks_table.php │ ├── 2021_09_29_023230_create_group_limits_table.php │ ├── 2021_10_01_083917_create_group_categories_table.php │ ├── 2021_10_09_004230_create_group_hashtags_table.php │ ├── 2021_10_09_004436_create_group_post_hashtags_table.php │ ├── 2021_10_13_002033_create_group_stores_table.php │ ├── 2021_10_13_002041_create_group_events_table.php │ ├── 2021_10_13_002124_create_group_activity_graphs_table.php │ ├── 2021_11_06_100552_add_more_settings_to_user_settings_table.php │ ├── 2021_11_09_105629_add_action_to_account_interstitials_table.php │ ├── 2022_01_03_052623_add_last_status_at_to_profiles_table.php │ ├── 2022_01_08_103817_add_index_to_followers_table.php │ ├── 2022_01_16_060052_create_portfolios_table.php │ ├── 2022_01_19_025041_create_custom_emoji_table.php │ ├── 2022_02_13_091135_add_missing_reblog_of_id_types_to_statuses_table.php │ ├── 2022_03_09_042023_add_ldap_columns_to_users_table.php │ ├── 2022_04_08_065311_create_cache_table.php │ ├── 2022_04_20_061915_create_conversations_table.php │ ├── 2022_05_26_034550_create_live_streams_table.php │ ├── 2022_06_03_051308_add_object_column_to_follow_requests_table.php │ ├── 2022_09_01_000000_fix_webfinger_profile_duplicate_accounts.php │ ├── 2022_09_01_043002_generate_missing_profile_webfinger.php │ ├── 2022_09_19_093029_fix_double_json_encoded_settings_in_usersettings_table.php │ ├── 2022_10_07_045520_add_reblog_of_id_index_to_statuses_table.php │ ├── 2022_10_07_055133_remove_old_compound_index_from_statuses_table.php │ ├── 2022_10_07_072311_add_status_id_index_to_bookmarks_table.php │ ├── 2022_10_07_072555_add_status_id_index_to_direct_messages_table.php │ ├── 2022_10_07_072859_add_status_id_index_to_mentions_table.php │ ├── 2022_10_07_073337_add_indexes_to_reports_table.php │ ├── 2022_10_07_110644_add_item_id_and_item_type_indexes_to_notifications_table.php │ ├── 2022_10_09_043758_fix_cdn_url_in_avatars_table.php │ ├── 2022_10_31_043257_add_actors_last_synced_at_to_instances_table.php │ ├── 2022_11_24_065214_add_register_source_to_users_table.php │ ├── 2022_11_30_123940_update_avatars_table_remove_cdn_url_unique_constraint.php │ ├── 2022_12_05_064156_add_key_id_index_to_profiles_table.php │ ├── 2022_12_13_092726_create_admin_invites_table.php │ ├── 2022_12_18_012352_add_status_id_index_to_media_table.php │ ├── 2022_12_18_034556_add_remote_media_index_to_media_table.php │ ├── 2022_12_18_133815_add_default_value_to_admin_invites_table.php │ ├── 2022_12_20_075729_add_action_index_to_notifications_table.php │ ├── 2022_12_27_013417_add_can_trend_to_hashtags_table.php │ ├── 2022_12_27_102053_update_hashtag_count.php │ ├── 2022_12_31_034627_fix_account_status_deletes.php │ ├── 2023_01_15_041933_add_missing_profile_id_to_users_table.php │ ├── 2023_01_19_141156_fix_bookmark_visibility.php │ ├── 2023_01_21_124608_fix_duplicate_profiles.php │ ├── 2023_01_29_034653_create_status_edits_table.php │ ├── 2023_02_04_053028_fix_cloud_media_paths.php │ ├── 2023_03_19_050342_add_notes_to_instances_table.php │ ├── 2023_04_20_092740_fix_account_blocks.php │ ├── 2023_04_24_101904_create_remote_reports_table.php │ ├── 2023_05_03_023758_update_postgres_visibility_defaults_on_statuses_table.php │ ├── 2023_05_03_042219_fix_postgres_hashtags.php │ ├── 2023_05_07_091703_add_edited_at_to_statuses_table.php │ ├── 2023_05_13_045228_remove_unused_columns_from_notifications_table.php │ ├── 2023_05_13_123119_remove_status_entities_from_statuses_table.php │ ├── 2023_05_15_050604_create_autospam_custom_tokens_table.php │ ├── 2023_05_19_102013_add_enable_atom_feed_to_user_settings_table.php │ ├── 2023_05_29_072206_create_user_app_settings_table.php │ ├── 2023_06_07_000001_create_pulse_tables.php │ ├── 2023_06_10_031634_create_import_posts_table.php │ ├── 2023_06_28_103008_add_user_id_index_to_profiles_table.php │ ├── 2023_07_07_025757_create_remote_auths_table.php │ ├── 2023_07_07_030427_create_remote_auth_instances_table.php │ ├── 2023_07_11_080040_add_show_reblogs_to_followers_table.php │ ├── 2023_08_07_021252_create_profile_aliases_table.php │ ├── 2023_08_08_045430_add_moved_to_profile_id_to_profiles_table.php │ ├── 2023_08_25_050021_add_indexable_column_to_profiles_table.php │ ├── 2023_09_12_044900_create_admin_shadow_filters_table.php │ ├── 2023_11_13_062429_add_followers_count_index_to_profiles_table.php │ ├── 2023_11_16_124107_create_hashtag_related_table.php │ ├── 2023_11_26_082439_add_state_and_score_to_places_table.php │ ├── 2023_12_04_041631_create_push_subscriptions_table.php │ ├── 2023_12_05_092152_add_active_deliver_to_instances_table.php │ ├── 2023_12_08_074345_add_direct_object_urls_to_statuses_table.php │ ├── 2023_12_13_060425_add_uploaded_to_s3_to_import_posts_table.php │ ├── 2023_12_16_052413_create_user_domain_blocks_table.php │ ├── 2023_12_19_081928_create_job_batches_table.php │ ├── 2023_12_21_103223_purge_deleted_status_hashtags.php │ ├── 2023_12_21_104103_create_default_domain_blocks_table.php │ ├── 2023_12_27_081801_create_user_roles_table.php │ ├── 2023_12_27_082024_add_has_roles_to_users_table.php │ ├── 2024_01_09_052419_create_parental_controls_table.php │ ├── 2024_01_16_073327_create_curated_registers_table.php │ ├── 2024_01_20_091352_create_curated_register_activities_table.php │ ├── 2024_01_22_090048_create_user_email_forgots_table.php │ ├── 2024_02_24_093824_add_has_responded_to_curated_registers_table.php │ ├── 2024_02_24_105641_create_curated_register_templates_table.php │ ├── 2024_03_02_094235_create_profile_migrations_table.php │ ├── 2024_03_08_122947_add_shared_inbox_attribute_to_instances_table.php │ ├── 2024_03_08_123356_add_shared_inboxes_to_instances_table.php │ ├── 2024_05_20_062706_update_group_posts_table.php │ ├── 2024_05_20_063638_create_group_comments_table.php │ ├── 2024_05_20_073054_create_group_likes_table.php │ ├── 2024_05_20_083159_create_group_media_table.php │ ├── 2024_05_31_090555_update_instances_table_add_index_to_nodeinfo_last_fetched_at.php │ ├── 2024_06_03_232204_add_url_index_to_statuses_table.php │ ├── 2024_06_19_084835_add_total_local_posts_to_config_cache.php │ ├── 2024_07_22_065800_add_expo_token_to_users_table.php │ ├── 2024_07_29_081002_add_storage_used_to_users_table.php │ ├── 2024_09_18_093322_add_notify_shares_to_users_table.php │ ├── 2024_10_06_035032_modify_caption_field_in_media_table.php │ ├── 2024_10_15_044935_create_moderated_profiles_table.php │ ├── 2025_01_18_061532_fix_local_statuses.php │ ├── 2025_01_28_102016_create_app_registers_table.php │ ├── 2025_01_30_061434_create_user_oidc_mapping_table.php │ ├── 2025_02_10_194847_fix_non_nullable_postgres_errors.php │ ├── 2025_03_02_060626_add_count_to_app_registers_table.php │ ├── 2025_03_19_022553_add_pinned_columns_statuses_table.php │ ├── 2025_04_08_102711_create_custom_filters_table.php │ ├── 2025_04_08_103425_create_custom_filter_keywords_table.php │ └── 2025_04_08_103433_create_custom_filter_statuses_table.php ├── schema │ ├── mariadb-schema.sql │ ├── mysql-schema.sql │ └── pgsql-schema.sql └── seeds │ └── DatabaseSeeder.php ├── docker-compose.build..yml ├── docker-compose.simple.yml ├── docker-compose.yml ├── docker ├── .env.testing ├── .hadolint.yaml ├── Dockerfile ├── Dockerfile.dockerignore ├── LICENSE ├── README.md ├── goss.yaml ├── goss_wait.yaml ├── rootfs │ ├── apache │ │ ├── docker │ │ │ └── templates │ │ │ │ └── etc │ │ │ │ ├── apache2 │ │ │ │ ├── conf-enabled │ │ │ │ │ └── docker-php.conf │ │ │ │ ├── mods-enabled │ │ │ │ │ └── mpm_prefork.conf │ │ │ │ └── sites-enabled │ │ │ │ │ └── 000-default.conf │ │ │ │ └── php │ │ │ │ ├── 8.3 │ │ │ │ └── apache2 │ │ │ │ │ └── php.ini │ │ │ │ └── 8.4 │ │ │ │ └── apache2 │ │ │ │ └── php.ini │ │ ├── etc │ │ │ └── apache2 │ │ │ │ └── conf-available │ │ │ │ └── remoteip.conf │ │ └── usr │ │ │ └── local │ │ │ └── bin │ │ │ └── apache2-foreground │ ├── nginx │ │ ├── docker │ │ │ └── templates │ │ │ │ └── etc │ │ │ │ └── nginx │ │ │ │ ├── conf.d │ │ │ │ └── default.conf │ │ │ │ └── nginx.conf │ │ └── var │ │ │ └── www │ │ │ └── Procfile │ └── shared │ │ ├── docker │ │ ├── entrypoint.d │ │ │ ├── 01-permissions.sh │ │ │ ├── 02-check-config.sh │ │ │ ├── 04-defaults.envsh │ │ │ ├── 05-templating.sh │ │ │ ├── 09-cache.sh │ │ │ ├── 10-storage.sh │ │ │ ├── 11-first-time-setup.sh │ │ │ ├── 12-migrations.sh │ │ │ └── 20-horizon.sh │ │ ├── entrypoint.sh │ │ ├── helpers.sh │ │ ├── install │ │ │ ├── base.sh │ │ │ └── php.sh │ │ └── templates │ │ │ ├── etc │ │ │ └── php │ │ │ │ ├── 8.3 │ │ │ │ ├── cli │ │ │ │ │ └── php.ini │ │ │ │ └── fpm │ │ │ │ │ ├── php-fpm.conf │ │ │ │ │ ├── php.ini │ │ │ │ │ └── pool.d │ │ │ │ │ └── www.conf │ │ │ │ └── 8.4 │ │ │ │ ├── cli │ │ │ │ └── php.ini │ │ │ │ └── fpm │ │ │ │ ├── php-fpm.conf │ │ │ │ ├── php.ini │ │ │ │ └── pool.d │ │ │ │ └── www.conf │ │ │ └── shared │ │ │ └── proxy │ │ │ └── conf.d │ │ │ └── docker-pixelfed.conf │ │ └── shared │ │ └── proxy │ │ └── conf.d │ │ └── .gitignore └── tests │ ├── bats.Dockerfile │ ├── bats │ └── helpers.bats │ ├── e2e.sh │ ├── goss.sh │ ├── playwright │ └── e2e.spec.ts │ ├── run-bats-tests.sh │ └── setup.sh ├── flake.lock ├── flake.nix ├── funding.json ├── goss.yaml ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── _landing │ ├── 1.jpeg │ ├── 2.jpeg │ ├── 3.jpeg │ ├── 4.jpeg │ ├── 5.jpeg │ ├── 6.jpeg │ ├── 7.jpeg │ ├── 8.jpeg │ ├── 9.jpeg │ └── bg.jpg ├── _lang │ ├── af.json │ ├── ar.json │ ├── bn.json │ ├── bs.json │ ├── ca.json │ ├── cs.json │ ├── cy.json │ ├── da.json │ ├── de.json │ ├── el.json │ ├── en.json │ ├── eo.json │ ├── es.json │ ├── eu.json │ ├── fa.json │ ├── fi.json │ ├── fr.json │ ├── gd.json │ ├── gl.json │ ├── he.json │ ├── hi.json │ ├── hr.json │ ├── hu.json │ ├── id.json │ ├── it.json │ ├── ja.json │ ├── ko.json │ ├── me.json │ ├── mk.json │ ├── ms.json │ ├── nl.json │ ├── no.json │ ├── oc.json │ ├── pl.json │ ├── pt.json │ ├── ro.json │ ├── ru.json │ ├── sk.json │ ├── sr.json │ ├── sv.json │ ├── th.json │ ├── tr.json │ ├── uk.json │ ├── vi.json │ ├── zh-cn.json │ ├── zh-tw.json │ └── zh.json ├── css │ ├── admin.css │ ├── app.css │ ├── appdark.css │ ├── landing.css │ ├── portfolio.css │ ├── profile.css │ └── spa.css ├── embed.js ├── favicon.ico ├── fonts │ ├── Manrope-Bold.woff │ ├── Manrope-ExtraLight.woff │ ├── Manrope-Regular.woff │ ├── UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1ZL7W0Q5nw.woff2 │ ├── UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa25L7W0Q5n-wU.woff2 │ ├── fa-brands-400.eot │ ├── fa-brands-400.svg │ ├── fa-brands-400.ttf │ ├── fa-brands-400.woff │ ├── fa-brands-400.woff2 │ ├── fa-light-300.eot │ ├── fa-light-300.svg │ ├── fa-light-300.ttf │ ├── fa-light-300.woff │ ├── fa-light-300.woff2 │ ├── fa-regular-400.eot │ ├── fa-regular-400.svg │ ├── fa-regular-400.ttf │ ├── fa-regular-400.woff │ ├── fa-regular-400.woff2 │ ├── fa-solid-900.eot │ ├── fa-solid-900.svg │ ├── fa-solid-900.ttf │ ├── fa-solid-900.woff │ ├── fa-solid-900.woff2 │ ├── nucleo-icons.eot │ ├── nucleo-icons.svg │ ├── nucleo-icons.ttf │ ├── nucleo-icons.woff │ ├── nucleo-icons.woff2 │ ├── xn7gYHE41ni1AdIRggexSvfedN4.woff2 │ ├── zYX9KVElMYYaJe8bpLHnCwDKjQ76AI5sdP3pBmtF8A.woff2 │ ├── zYX9KVElMYYaJe8bpLHnCwDKjQ76AI9sdP3pBmtF8A.woff2 │ ├── zYX9KVElMYYaJe8bpLHnCwDKjQ76AIFsdP3pBms.woff2 │ ├── zYX9KVElMYYaJe8bpLHnCwDKjQ76AIJsdP3pBmtF8A.woff2 │ ├── zYX9KVElMYYaJe8bpLHnCwDKjQ76AIVsdP3pBmtF8A.woff2 │ ├── zYX9KVElMYYaJe8bpLHnCwDKjQ76AIxsdP3pBmtF8A.woff2 │ ├── zYXgKVElMYYaJe8bpLHnCwDKhd7eFaxOedfTDw.woff2 │ ├── zYXgKVElMYYaJe8bpLHnCwDKhdHeFaxOedc.woff2 │ ├── zYXgKVElMYYaJe8bpLHnCwDKhdLeFaxOedfTDw.woff2 │ ├── zYXgKVElMYYaJe8bpLHnCwDKhdXeFaxOedfTDw.woff2 │ ├── zYXgKVElMYYaJe8bpLHnCwDKhd_eFaxOedfTDw.woff2 │ └── zYXgKVElMYYaJe8bpLHnCwDKhdzeFaxOedfTDw.woff2 ├── img │ ├── favicon.png │ ├── help │ │ └── what_is_the_fediverse.svg │ ├── icon │ │ ├── alert-circle-fill.svg │ │ ├── alert-circle.svg │ │ ├── alert-octagon-fill.svg │ │ ├── alert-octagon.svg │ │ ├── alert-square-fill.svg │ │ ├── alert-square.svg │ │ ├── alert-triangle-fill.svg │ │ ├── alert-triangle.svg │ │ ├── archive-fill.svg │ │ ├── archive.svg │ │ ├── arrow-clockwise.svg │ │ ├── arrow-counterclockwise.svg │ │ ├── arrow-down-left.svg │ │ ├── arrow-down-right.svg │ │ ├── arrow-down.svg │ │ ├── arrow-left-right.svg │ │ ├── arrow-left.svg │ │ ├── arrow-repeat.svg │ │ ├── arrow-right.svg │ │ ├── arrow-up-down.svg │ │ ├── arrow-up-left.svg │ │ ├── arrow-up-right.svg │ │ ├── arrow-up.svg │ │ ├── arrows-contract.svg │ │ ├── arrows-expand.svg │ │ ├── arrows-fullscreen.svg │ │ ├── at.svg │ │ ├── bar-chart-fill.svg │ │ ├── bar-chart.svg │ │ ├── battery-full.svg │ │ ├── battery.svg │ │ ├── bell-fill.svg │ │ ├── bell.svg │ │ ├── blockquote-left.svg │ │ ├── blockquote-right.svg │ │ ├── bookmark-fill.svg │ │ ├── bookmark.svg │ │ ├── bootstrap-fill.svg │ │ ├── bootstrap-reboot.svg │ │ ├── bootstrap.svg │ │ ├── box-arrow-bottom-left.svg │ │ ├── box-arrow-bottom-right.svg │ │ ├── box-arrow-down.svg │ │ ├── box-arrow-left.svg │ │ ├── box-arrow-right.svg │ │ ├── box-arrow-up-left.svg │ │ ├── box-arrow-up-right.svg │ │ ├── box-arrow-up.svg │ │ ├── brightness-fill-high.svg │ │ ├── brightness-fill-low.svg │ │ ├── brightness-high.svg │ │ ├── brightness-low.svg │ │ ├── bullseye.svg │ │ ├── calendar.svg │ │ ├── camera-video-fill.svg │ │ ├── camera-video.svg │ │ ├── camera.svg │ │ ├── chat-fill.svg │ │ ├── chat.svg │ │ ├── check-box.svg │ │ ├── check-circle.svg │ │ ├── check.svg │ │ ├── chevron-compact-down.svg │ │ ├── chevron-compact-left.svg │ │ ├── chevron-compact-right.svg │ │ ├── chevron-compact-up.svg │ │ ├── chevron-down.svg │ │ ├── chevron-left.svg │ │ ├── chevron-right.svg │ │ ├── chevron-up.svg │ │ ├── circle-fill.svg │ │ ├── circle-slash.svg │ │ ├── circle.svg │ │ ├── clock-fill.svg │ │ ├── clock.svg │ │ ├── cloud-fill.svg │ │ ├── cloud.svg │ │ ├── code-slash.svg │ │ ├── code.svg │ │ ├── command.svg │ │ ├── compass.svg │ │ ├── credit-card.svg │ │ ├── cursor-fill.svg │ │ ├── cursor.svg │ │ ├── dash.svg │ │ ├── display.svg │ │ ├── document-code.svg │ │ ├── document-diff.svg │ │ ├── document-richtext.svg │ │ ├── document-text.svg │ │ ├── document.svg │ │ ├── documents-alt.svg │ │ ├── documents.svg │ │ ├── dot.svg │ │ ├── envelope.svg │ │ ├── filter.svg │ │ ├── flag-fill.svg │ │ ├── flag.svg │ │ ├── folder-fill.svg │ │ ├── folder-symlink-fill.svg │ │ ├── folder-symlink.svg │ │ ├── folder.svg │ │ ├── forward-fill.svg │ │ ├── forward.svg │ │ ├── gear-fill.svg │ │ ├── gear.svg │ │ ├── graph-down.svg │ │ ├── graph-up.svg │ │ ├── grid-fill.svg │ │ ├── grid.svg │ │ ├── heart-fill.svg │ │ ├── heart.svg │ │ ├── house-fill.svg │ │ ├── house.svg │ │ ├── image-fill.svg │ │ ├── image.svg │ │ ├── inbox-fill.svg │ │ ├── inbox.svg │ │ ├── info-fill.svg │ │ ├── info-square-fill.svg │ │ ├── info-square.svg │ │ ├── info.svg │ │ ├── justify-left.svg │ │ ├── justify-right.svg │ │ ├── justify.svg │ │ ├── kanban-fill.svg │ │ ├── kanban.svg │ │ ├── laptop.svg │ │ ├── list-check.svg │ │ ├── list-ol.svg │ │ ├── list-task.svg │ │ ├── list-ul.svg │ │ ├── list.svg │ │ ├── lock-fill.svg │ │ ├── lock.svg │ │ ├── music-player-fill.svg │ │ ├── music-player.svg │ │ ├── option.svg │ │ ├── pause-fill.svg │ │ ├── pause.svg │ │ ├── people-fill.svg │ │ ├── people.svg │ │ ├── person-fill.svg │ │ ├── person.svg │ │ ├── phone-landscape.svg │ │ ├── phone.svg │ │ ├── play-fill.svg │ │ ├── play.svg │ │ ├── plus.svg │ │ ├── power.svg │ │ ├── question-fill.svg │ │ ├── question-square-fill.svg │ │ ├── question-square.svg │ │ ├── question.svg │ │ ├── reply-all-fill.svg │ │ ├── reply-all.svg │ │ ├── reply-fill.svg │ │ ├── reply.svg │ │ ├── search.svg │ │ ├── skip-backward-fill.svg │ │ ├── skip-backward.svg │ │ ├── skip-end-fill.svg │ │ ├── skip-end.svg │ │ ├── skip-forward-fill.svg │ │ ├── skip-forward.svg │ │ ├── skip-start-fill.svg │ │ ├── skip-start.svg │ │ ├── square-fill.svg │ │ ├── square.svg │ │ ├── star-fill.svg │ │ ├── star-half.svg │ │ ├── star.svg │ │ ├── stop-fill.svg │ │ ├── stop.svg │ │ ├── tablet-landscape.svg │ │ ├── tablet.svg │ │ ├── tag-fill.svg │ │ ├── tag.svg │ │ ├── terminal-fill.svg │ │ ├── terminal.svg │ │ ├── text-center.svg │ │ ├── text-indent-left.svg │ │ ├── text-indent-right.svg │ │ ├── text-left.svg │ │ ├── text-right.svg │ │ ├── three-dots-vertical.svg │ │ ├── three-dots.svg │ │ ├── toggle-off.svg │ │ ├── toggle-on.svg │ │ ├── trash-fill.svg │ │ ├── trash.svg │ │ ├── triangle-fill.svg │ │ ├── triangle.svg │ │ ├── tv-fill.svg │ │ ├── tv.svg │ │ ├── type-bold.svg │ │ ├── type-italic.svg │ │ ├── type-underline.svg │ │ ├── type.svg │ │ ├── unlock-fill.svg │ │ ├── unlock.svg │ │ ├── volume-down.svg │ │ ├── volume-mute.svg │ │ ├── volume-up.svg │ │ ├── watch.svg │ │ ├── wifi.svg │ │ ├── x-circle-fill.svg │ │ ├── x-circle.svg │ │ ├── x-octagon-fill.svg │ │ ├── x-octagon.svg │ │ ├── x-square-fill.svg │ │ ├── x-square.svg │ │ └── x.svg │ ├── illustrations │ │ ├── dk-nature-man-colour.svg │ │ ├── dk-nature-man-monochrome.svg │ │ └── dk-secure-feed.svg │ ├── landing │ │ ├── android_1.jpg │ │ ├── ios_1.jpg │ │ ├── ios_2.jpg │ │ ├── ios_3.jpg │ │ └── ios_4.jpg │ ├── logo │ │ └── pwa │ │ │ ├── 1024.png │ │ │ ├── 114.png │ │ │ ├── 120.png │ │ │ ├── 128.png │ │ │ ├── 144.png │ │ │ ├── 152.png │ │ │ ├── 180.png │ │ │ ├── 192.png │ │ │ ├── 256.png │ │ │ ├── 384.png │ │ │ ├── 48.png │ │ │ ├── 512.png │ │ │ ├── 57.png │ │ │ ├── 60.png │ │ │ ├── 72.png │ │ │ ├── 76.png │ │ │ └── 96.png │ ├── pixelfed-icon-black.svg │ ├── pixelfed-icon-color.png │ ├── pixelfed-icon-color.svg │ ├── pixelfed-icon-grey.svg │ ├── pixelfed-icon-white.svg │ └── sample-post.jpeg ├── index.php ├── js │ ├── account-import.js │ ├── account-import.js.LICENSE.txt │ ├── activity.js │ ├── admin.js │ ├── admin.js.LICENSE.txt │ ├── admin_invite.js │ ├── app.js │ ├── app.js.LICENSE.txt │ ├── changelog.bundle.8a5824822f9ae86d.js │ ├── collectioncompose.js │ ├── collections.js │ ├── components.js │ ├── compose-classic.js │ ├── compose.chunk.fc872eb6cabd23ba.js │ ├── compose.chunk.fc872eb6cabd23ba.js.LICENSE.txt │ ├── compose.js │ ├── compose.js.LICENSE.txt │ ├── custom_filters.js │ ├── daci.chunk.18079d0c596dea32.js │ ├── developers.js │ ├── direct.js │ ├── discover.chunk.10fae3e9219ebb11.js │ ├── discover.js │ ├── discover~findfriends.chunk.f058b16f401d83a8.js │ ├── discover~hashtag.bundle.b5d4d796cf0db40e.js │ ├── discover~memories.chunk.6182817e96fa40b9.js │ ├── discover~myhashtags.chunk.b95cea5258aed281.js │ ├── discover~serverfeed.chunk.c52b21c152c459d2.js │ ├── discover~settings.chunk.e5623d426a9123e2.js │ ├── dms.chunk.b6eb9cd27a7c8c67.js │ ├── dms~message.chunk.df9204bb409d6818.js │ ├── error404.bundle.f5958c1713b4ab7c.js │ ├── group-status.js │ ├── group-topic-feed.js │ ├── group.create.e34ad5621d07870d.js │ ├── groups-page-about.16d96a32748daa93.js │ ├── groups-page-media.526b66b27a0bd091.js │ ├── groups-page-members.c59de89c3b8e3a02.js │ ├── groups-page-topics.d279a2438ee20311.js │ ├── groups-page.4a77f2a4e0024224.js │ ├── groups-post.e160e406bdb4a1b0.js │ ├── groups-profile.58b5bf1af4d0722e.js │ ├── groups.js │ ├── hashtag.js │ ├── home.chunk.831fb257aa279d4f.js │ ├── home.chunk.831fb257aa279d4f.js.LICENSE.txt │ ├── i18n.bundle.b1a8d5f9cbca5ce4.js │ ├── landing.js │ ├── landing.js.LICENSE.txt │ ├── manifest.js │ ├── notifications.chunk.0c4b0cc8e4d48b7f.js │ ├── portfolio.js │ ├── portfolio.js.LICENSE.txt │ ├── post.chunk.5e2ff631bde7676e.js │ ├── post.chunk.5e2ff631bde7676e.js.LICENSE.txt │ ├── profile-directory.js │ ├── profile.chunk.dbae67dede031f9e.js │ ├── profile.js │ ├── profile.js.LICENSE.txt │ ├── profile~followers.bundle.9d2008cfa13a6f17.js │ ├── profile~following.bundle.8ebe39a19638db1b.js │ ├── remote_auth.js │ ├── search.js │ ├── settings.js │ ├── spa.js │ ├── spa.js.LICENSE.txt │ ├── status.js │ ├── stories.js │ ├── story-compose.js │ ├── timeline.js │ ├── vendor.js │ └── vendor.js.LICENSE.txt ├── manifest.json ├── mix-manifest.json ├── offline.html ├── robots.txt ├── static │ └── beep.mp3 ├── svg │ ├── 403.svg │ ├── 404.svg │ ├── 500.svg │ └── 503.svg ├── sw.js └── vendor │ ├── horizon │ └── .gitignore │ └── telescope │ ├── app-dark.css │ ├── app.css │ ├── app.js │ ├── favicon.ico │ └── mix-manifest.json ├── resources ├── assets │ ├── components │ │ ├── AccountImport.vue │ │ ├── Changelog.vue │ │ ├── Compose.vue │ │ ├── Direct.vue │ │ ├── DirectMessage.vue │ │ ├── Discover.vue │ │ ├── FullscreenCarousel.vue │ │ ├── GroupCreate.vue │ │ ├── GroupDiscover.vue │ │ ├── GroupFeed.vue │ │ ├── GroupJoins.vue │ │ ├── GroupNotifications.vue │ │ ├── GroupPage.vue │ │ ├── GroupPost.vue │ │ ├── GroupProfile.vue │ │ ├── GroupSearch.vue │ │ ├── Groups.vue │ │ ├── Hashtag.vue │ │ ├── Home.vue │ │ ├── Language.vue │ │ ├── NotFound.vue │ │ ├── Notifications.vue │ │ ├── Post.vue │ │ ├── Profile.vue │ │ ├── ProfileCarousel.vue │ │ ├── ProfileFollowers.vue │ │ ├── ProfileFollowing.vue │ │ ├── SplashScreen.vue │ │ ├── admin │ │ │ ├── AdminAutospam.vue │ │ │ ├── AdminDirectory.vue │ │ │ ├── AdminHashtags.vue │ │ │ ├── AdminInstances.vue │ │ │ ├── AdminReports.vue │ │ │ ├── AdminSettings.vue │ │ │ └── partial │ │ │ │ ├── AdminModalPost.vue │ │ │ │ ├── AdminReadMore.vue │ │ │ │ ├── AdminRemoteReportModal.vue │ │ │ │ ├── AdminSettingsCheckbox.vue │ │ │ │ ├── AdminSettingsInput.vue │ │ │ │ └── AdminSettingsTabHeader.vue │ │ ├── discover │ │ │ ├── FindFriends.vue │ │ │ ├── Hashtags.vue │ │ │ ├── Insights.vue │ │ │ ├── Memories.vue │ │ │ ├── ServerFeed.vue │ │ │ └── Settings.vue │ │ ├── groups │ │ │ ├── CreateGroup.vue │ │ │ ├── GroupFeed.vue │ │ │ ├── GroupInvite.vue │ │ │ ├── GroupProfile.vue │ │ │ ├── GroupSettings.vue │ │ │ ├── GroupTopicFeed.vue │ │ │ ├── GroupsHome.vue │ │ │ ├── Page │ │ │ │ ├── GroupAbout.vue │ │ │ │ ├── GroupMedia.vue │ │ │ │ ├── GroupMembers.vue │ │ │ │ └── GroupTopics.vue │ │ │ ├── partials │ │ │ │ ├── CommentDrawer.vue │ │ │ │ ├── CommentPost.vue │ │ │ │ ├── ContextMenu.vue │ │ │ │ ├── CreateForm │ │ │ │ │ ├── CheckboxInput.vue │ │ │ │ │ ├── SelectInput.vue │ │ │ │ │ ├── TextAreaInput.vue │ │ │ │ │ └── TextInput.vue │ │ │ │ ├── GroupAbout.vue │ │ │ │ ├── GroupCard.vue │ │ │ │ ├── GroupCompose.vue │ │ │ │ ├── GroupEvents.vue │ │ │ │ ├── GroupInfoCard.vue │ │ │ │ ├── GroupInsights.vue │ │ │ │ ├── GroupInviteModal.vue │ │ │ │ ├── GroupListCard.vue │ │ │ │ ├── GroupMedia.vue │ │ │ │ ├── GroupMembers.vue │ │ │ │ ├── GroupModeration.vue │ │ │ │ ├── GroupPolls.vue │ │ │ │ ├── GroupPostModal.vue │ │ │ │ ├── GroupSearchModal.vue │ │ │ │ ├── GroupStatus.vue │ │ │ │ ├── GroupTopics.vue │ │ │ │ ├── LeaveGroup.vue │ │ │ │ ├── MemberLimitInteractionsModal.vue │ │ │ │ ├── Membership │ │ │ │ │ └── MemberOnlyWarning.vue │ │ │ │ ├── Page │ │ │ │ │ ├── GroupBanner.vue │ │ │ │ │ ├── GroupHeaderDetails.vue │ │ │ │ │ └── GroupNavTabs.vue │ │ │ │ ├── ReadMore.vue │ │ │ │ ├── SelfDiscover.vue │ │ │ │ ├── SelfFeed.vue │ │ │ │ ├── SelfGroups.vue │ │ │ │ ├── SelfInvitations.vue │ │ │ │ ├── SelfNotifications.vue │ │ │ │ ├── SelfRemoteSearch.vue │ │ │ │ ├── ShareMenu.vue │ │ │ │ └── Status │ │ │ │ │ ├── GroupHeader.vue │ │ │ │ │ └── ParentUnavailable.vue │ │ │ └── sections │ │ │ │ ├── Loader.vue │ │ │ │ └── Sidebar.vue │ │ ├── invite │ │ │ └── AdminInvite.vue │ │ ├── landing │ │ │ ├── Directory.vue │ │ │ ├── Explore.vue │ │ │ ├── Index.vue │ │ │ ├── NotFound.vue │ │ │ ├── partials │ │ │ │ ├── PostCard.vue │ │ │ │ └── UserCard.vue │ │ │ └── sections │ │ │ │ ├── footer.vue │ │ │ │ └── nav.vue │ │ ├── partials │ │ │ ├── BlurhashCanvas.vue │ │ │ ├── StatusPlaceholder.vue │ │ │ ├── TimelineStatus.vue │ │ │ ├── direct │ │ │ │ └── Message.vue │ │ │ ├── discover │ │ │ │ ├── daily-trending.vue │ │ │ │ ├── discover-spotlight.vue │ │ │ │ ├── grid-card.vue │ │ │ │ └── news-slider.vue │ │ │ ├── drawer.vue │ │ │ ├── modal │ │ │ │ ├── ReportPost.vue │ │ │ │ └── UpdateAvatar.vue │ │ │ ├── navbar.vue │ │ │ ├── placeholders │ │ │ │ ├── DirectMessagePlaceholder.vue │ │ │ │ ├── EmptyTimeline.vue │ │ │ │ ├── NotificationPlaceholder.vue │ │ │ │ └── TimelineOnboarding.vue │ │ │ ├── post │ │ │ │ ├── CommentDrawer.vue │ │ │ │ ├── CommentReplies.vue │ │ │ │ ├── CommentReplyForm.vue │ │ │ │ ├── ContextMenu.vue │ │ │ │ ├── EditHistoryModal.vue │ │ │ │ ├── LikeListPlaceholder.vue │ │ │ │ ├── LikeModal.vue │ │ │ │ ├── MediaContainer.vue │ │ │ │ ├── PostContent.vue │ │ │ │ ├── PostEditModal.vue │ │ │ │ ├── PostHeader.vue │ │ │ │ ├── PostReactions.vue │ │ │ │ ├── ReadMore.vue │ │ │ │ └── ShareModal.vue │ │ │ ├── profile │ │ │ │ ├── ProfileFeed.vue │ │ │ │ ├── ProfileFollowers.vue │ │ │ │ ├── ProfileFollowing.vue │ │ │ │ ├── ProfileHoverCard.vue │ │ │ │ └── ProfileSidebar.vue │ │ │ ├── rightbar.vue │ │ │ ├── sidebar.vue │ │ │ └── timeline │ │ │ │ ├── Notification.vue │ │ │ │ └── StoryCarousel.vue │ │ ├── presenter │ │ │ ├── MixedAlbumPresenter.vue │ │ │ ├── PhotoAlbumPresenter.vue │ │ │ ├── PhotoPresenter.vue │ │ │ ├── VideoAlbumPresenter.vue │ │ │ ├── VideoPlayer.vue │ │ │ └── VideoPresenter.vue │ │ ├── remote-auth │ │ │ ├── GettingStartedComponent.vue │ │ │ ├── StartComponent.vue │ │ │ └── partials │ │ │ │ └── RegisterForm.vue │ │ └── sections │ │ │ ├── DiscoverFeed.vue │ │ │ ├── Notifications.vue │ │ │ └── Timeline.vue │ ├── js │ │ ├── account-import.js │ │ ├── activity.js │ │ ├── admin.js │ │ ├── admin_invite.js │ │ ├── app.js │ │ ├── collectioncompose.js │ │ ├── collections.js │ │ ├── components.js │ │ ├── components │ │ │ ├── Activity.vue │ │ │ ├── AnnouncementsCard.vue │ │ │ ├── CirclePanel.vue │ │ │ ├── CollectionComponent.vue │ │ │ ├── CollectionCompose.vue │ │ │ ├── ComposeClassic.vue │ │ │ ├── ComposeModal.vue │ │ │ ├── Direct.vue │ │ │ ├── DirectMessage.vue │ │ │ ├── DiscoverComponent.vue │ │ │ ├── FollowSuggestions.vue │ │ │ ├── GroupStatusPermalink.vue │ │ │ ├── Hashtag.vue │ │ │ ├── LoopComponent.vue │ │ │ ├── My2020.vue │ │ │ ├── NavMenu.vue │ │ │ ├── NotificationCard.vue │ │ │ ├── PortfolioPost.vue │ │ │ ├── PortfolioProfile.vue │ │ │ ├── PortfolioSettings.vue │ │ │ ├── PostComponent.vue │ │ │ ├── PostMenu.vue │ │ │ ├── Profile.vue │ │ │ ├── ProfileDirectory.vue │ │ │ ├── SearchResults.vue │ │ │ ├── Stories.vue │ │ │ ├── StoryCompose.vue │ │ │ ├── StoryTimelineComponent.vue │ │ │ ├── StoryViewer.vue │ │ │ ├── Timeline.vue │ │ │ ├── filters.js │ │ │ ├── filters │ │ │ │ ├── FilterCard.vue │ │ │ │ ├── FilterModal.vue │ │ │ │ └── FiltersList.vue │ │ │ ├── partials │ │ │ │ ├── CommentCard.vue │ │ │ │ ├── CommentFeed.vue │ │ │ │ ├── ContextMenu.vue │ │ │ │ ├── PollCard.vue │ │ │ │ └── StatusCard.vue │ │ │ ├── passport │ │ │ │ ├── AuthorizedClients.vue │ │ │ │ ├── Clients.vue │ │ │ │ └── PersonalAccessTokens.vue │ │ │ ├── presenter │ │ │ │ ├── MixedAlbumPresenter.vue │ │ │ │ ├── PhotoAlbumPresenter.vue │ │ │ │ ├── PhotoPresenter.vue │ │ │ │ ├── VideoAlbumPresenter.vue │ │ │ │ └── VideoPresenter.vue │ │ │ └── shortcuts.js │ │ ├── compose-classic.js │ │ ├── compose.js │ │ ├── custom_filters.js │ │ ├── developers.js │ │ ├── direct.js │ │ ├── discover.js │ │ ├── embed.js │ │ ├── group-status.js │ │ ├── group-topic-feed.js │ │ ├── groups.js │ │ ├── hashtag.js │ │ ├── i18n │ │ │ ├── af.json │ │ │ ├── ar.json │ │ │ ├── bn.json │ │ │ ├── bs.json │ │ │ ├── ca.json │ │ │ ├── cs.json │ │ │ ├── cy.json │ │ │ ├── da.json │ │ │ ├── de.json │ │ │ ├── el.json │ │ │ ├── en.json │ │ │ ├── eo.json │ │ │ ├── es.json │ │ │ ├── eu.json │ │ │ ├── fa.json │ │ │ ├── fi.json │ │ │ ├── fr.json │ │ │ ├── gd.json │ │ │ ├── gl.json │ │ │ ├── he.json │ │ │ ├── hi.json │ │ │ ├── hr.json │ │ │ ├── hu.json │ │ │ ├── id.json │ │ │ ├── it.json │ │ │ ├── ja.json │ │ │ ├── ko.json │ │ │ ├── me.json │ │ │ ├── mk.json │ │ │ ├── ms.json │ │ │ ├── nl.json │ │ │ ├── no.json │ │ │ ├── oc.json │ │ │ ├── pl.json │ │ │ ├── pt.json │ │ │ ├── ro.json │ │ │ ├── ru.json │ │ │ ├── sk.json │ │ │ ├── sr.json │ │ │ ├── sv.json │ │ │ ├── th.json │ │ │ ├── tr.json │ │ │ ├── uk.json │ │ │ ├── vi.json │ │ │ ├── zh-cn.json │ │ │ ├── zh-tw.json │ │ │ └── zh.json │ │ ├── landing.js │ │ ├── lib │ │ │ ├── argon.js │ │ │ └── fontawesome-all.js │ │ ├── live-player.js │ │ ├── loops.js │ │ ├── micro.js │ │ ├── my2020.js │ │ ├── polyfill.js │ │ ├── portfolio.js │ │ ├── profile-directory.js │ │ ├── profile.js │ │ ├── remote_auth.js │ │ ├── search.js │ │ ├── settings.js │ │ ├── spa.js │ │ ├── status.js │ │ ├── stories.js │ │ ├── story-compose.js │ │ ├── timeline.js │ │ └── util │ │ │ └── debounce.js │ └── sass │ │ ├── _variables.scss │ │ ├── admin.scss │ │ ├── app.scss │ │ ├── appdark.scss │ │ ├── components │ │ ├── filters.scss │ │ ├── notifications.scss │ │ ├── switch.scss │ │ └── typeahead.scss │ │ ├── custom.scss │ │ ├── dark.scss │ │ ├── fonts.scss │ │ ├── landing.scss │ │ ├── landing │ │ ├── carousel.scss │ │ └── devices.scss │ │ ├── lib │ │ ├── argon.css │ │ ├── fontawesome.scss │ │ ├── ibmplexsans.scss │ │ ├── inter.scss │ │ ├── manrope.scss │ │ ├── nucleo-svg.css │ │ ├── nucleo.css │ │ └── placeholder-loading.scss │ │ ├── moment.scss │ │ ├── portfolio.scss │ │ ├── profile.scss │ │ └── spa.scss ├── lang │ ├── af │ │ └── web.php │ ├── ar │ │ ├── auth.php │ │ ├── exception.php │ │ ├── helpcenter.php │ │ ├── navmenu.php │ │ ├── notification.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── profile.php │ │ ├── site.php │ │ ├── timeline.php │ │ ├── validation.php │ │ └── web.php │ ├── bn │ │ └── web.php │ ├── bs │ │ └── web.php │ ├── ca │ │ ├── auth.php │ │ ├── exception.php │ │ ├── helpcenter.php │ │ ├── navmenu.php │ │ ├── notification.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── profile.php │ │ ├── site.php │ │ ├── timeline.php │ │ ├── validation.php │ │ └── web.php │ ├── cs │ │ ├── auth.php │ │ ├── exception.php │ │ ├── helpcenter.php │ │ ├── navmenu.php │ │ ├── notification.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── profile.php │ │ ├── site.php │ │ ├── timeline.php │ │ ├── validation.php │ │ └── web.php │ ├── cy │ │ ├── auth.php │ │ ├── helpcenter.php │ │ ├── navmenu.php │ │ ├── notification.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── profile.php │ │ ├── site.php │ │ ├── timeline.php │ │ ├── validation.php │ │ └── web.php │ ├── da │ │ ├── auth.php │ │ ├── navmenu.php │ │ ├── notification.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── profile.php │ │ ├── validation.php │ │ └── web.php │ ├── de │ │ ├── auth.php │ │ ├── exception.php │ │ ├── helpcenter.php │ │ ├── navmenu.php │ │ ├── notification.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── profile.php │ │ ├── settings.php │ │ ├── site.php │ │ ├── timeline.php │ │ ├── validation.php │ │ └── web.php │ ├── el │ │ ├── auth.php │ │ ├── notification.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── profile.php │ │ ├── validation.php │ │ └── web.php │ ├── en │ │ ├── auth.php │ │ ├── exception.php │ │ ├── helpcenter.php │ │ ├── navmenu.php │ │ ├── notification.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── profile.php │ │ ├── settings.php │ │ ├── site.php │ │ ├── timeline.php │ │ ├── validation.php │ │ └── web.php │ ├── eo │ │ ├── auth.php │ │ ├── exception.php │ │ ├── helpcenter.php │ │ ├── navmenu.php │ │ ├── notification.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── profile.php │ │ ├── site.php │ │ ├── timeline.php │ │ ├── validation.php │ │ └── web.php │ ├── es │ │ ├── auth.php │ │ ├── exception.php │ │ ├── helpcenter.php │ │ ├── navmenu.php │ │ ├── notification.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── profile.php │ │ ├── settings.php │ │ ├── site.php │ │ ├── timeline.php │ │ ├── validation.php │ │ └── web.php │ ├── eu │ │ ├── auth.php │ │ ├── navmenu.php │ │ ├── notification.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── profile.php │ │ ├── site.php │ │ ├── timeline.php │ │ ├── validation.php │ │ └── web.php │ ├── fa │ │ ├── auth.php │ │ ├── exception.php │ │ ├── helpcenter.php │ │ ├── navmenu.php │ │ ├── notification.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── profile.php │ │ ├── site.php │ │ ├── timeline.php │ │ ├── validation.php │ │ └── web.php │ ├── fi │ │ ├── auth.php │ │ ├── notification.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── profile.php │ │ ├── timeline.php │ │ └── web.php │ ├── fr │ │ ├── auth.php │ │ ├── exception.php │ │ ├── helpcenter.php │ │ ├── navmenu.php │ │ ├── notification.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── profile.php │ │ ├── site.php │ │ ├── timeline.php │ │ ├── validation.php │ │ └── web.php │ ├── gd │ │ └── web.php │ ├── gl │ │ ├── README.md │ │ ├── auth.php │ │ ├── exception.php │ │ ├── helpcenter.php │ │ ├── navmenu.php │ │ ├── notification.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── profile.php │ │ ├── site.php │ │ ├── timeline.php │ │ ├── validation.php │ │ └── web.php │ ├── he │ │ ├── auth.php │ │ ├── navmenu.php │ │ ├── notification.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── profile.php │ │ ├── site.php │ │ ├── timeline.php │ │ ├── validation.php │ │ └── web.php │ ├── hi │ │ └── web.php │ ├── hr │ │ └── web.php │ ├── hu │ │ └── web.php │ ├── id │ │ ├── auth.php │ │ ├── navmenu.php │ │ ├── notification.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── profile.php │ │ ├── site.php │ │ ├── timeline.php │ │ ├── validation.php │ │ └── web.php │ ├── it │ │ ├── auth.php │ │ ├── exception.php │ │ ├── helpcenter.php │ │ ├── navmenu.php │ │ ├── notification.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── profile.php │ │ ├── site.php │ │ ├── timeline.php │ │ ├── validation.php │ │ └── web.php │ ├── ja │ │ ├── auth.php │ │ ├── helpcenter.php │ │ ├── navmenu.php │ │ ├── notification.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── profile.php │ │ ├── site.php │ │ ├── timeline.php │ │ ├── validation.php │ │ └── web.php │ ├── ko │ │ └── web.php │ ├── me │ │ └── web.php │ ├── mk │ │ └── web.php │ ├── ms │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── validation.php │ │ └── web.php │ ├── nl │ │ ├── site.php │ │ └── web.php │ ├── no │ │ └── web.php │ ├── oc │ │ ├── auth.php │ │ ├── helpcenter.php │ │ ├── navmenu.php │ │ ├── notification.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── profile.php │ │ ├── site.php │ │ ├── timeline.php │ │ ├── validation.php │ │ └── web.php │ ├── pl │ │ ├── auth.php │ │ ├── exception.php │ │ ├── helpcenter.php │ │ ├── navmenu.php │ │ ├── notification.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── profile.php │ │ ├── site.php │ │ ├── timeline.php │ │ ├── validation.php │ │ └── web.php │ ├── pt │ │ ├── auth.php │ │ ├── exception.php │ │ ├── helpcenter.php │ │ ├── navmenu.php │ │ ├── notification.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── profile.php │ │ ├── settings.php │ │ ├── site.php │ │ ├── timeline.php │ │ ├── validation.php │ │ └── web.php │ ├── ro │ │ └── web.php │ ├── ru │ │ ├── auth.php │ │ ├── exception.php │ │ ├── helpcenter.php │ │ ├── navmenu.php │ │ ├── notification.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── profile.php │ │ ├── site.php │ │ ├── timeline.php │ │ ├── validation.php │ │ └── web.php │ ├── sk │ │ └── web.php │ ├── sr │ │ └── web.php │ ├── sv │ │ ├── auth.php │ │ ├── helpcenter.php │ │ ├── navmenu.php │ │ ├── notification.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── profile.php │ │ ├── site.php │ │ ├── timeline.php │ │ ├── validation.php │ │ └── web.php │ ├── th │ │ ├── auth.php │ │ ├── exception.php │ │ ├── helpcenter.php │ │ ├── navmenu.php │ │ ├── notification.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── profile.php │ │ ├── site.php │ │ ├── timeline.php │ │ ├── validation.php │ │ └── web.php │ ├── tr │ │ ├── auth.php │ │ ├── navmenu.php │ │ ├── notification.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── profile.php │ │ ├── settings.php │ │ ├── site.php │ │ ├── timeline.php │ │ ├── validation.php │ │ └── web.php │ ├── uk │ │ ├── auth.php │ │ ├── exception.php │ │ ├── helpcenter.php │ │ ├── navmenu.php │ │ ├── notification.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── profile.php │ │ ├── site.php │ │ ├── timeline.php │ │ ├── validation.php │ │ └── web.php │ ├── vendor │ │ └── backup │ │ │ ├── ar │ │ │ └── notifications.php │ │ │ ├── cs │ │ │ └── notifications.php │ │ │ ├── da │ │ │ └── notifications.php │ │ │ ├── de │ │ │ └── notifications.php │ │ │ ├── en │ │ │ └── notifications.php │ │ │ ├── es │ │ │ └── notifications.php │ │ │ ├── eu │ │ │ └── notifications.php │ │ │ ├── fa │ │ │ └── notifications.php │ │ │ ├── fr │ │ │ └── notifications.php │ │ │ ├── gl │ │ │ └── notifications.php │ │ │ ├── hi │ │ │ └── notifications.php │ │ │ ├── id │ │ │ └── notifications.php │ │ │ ├── it │ │ │ └── notifications.php │ │ │ ├── ja │ │ │ └── notifications.php │ │ │ ├── pt-BR │ │ │ └── notifications.php │ │ │ ├── ro │ │ │ └── notifications.php │ │ │ ├── ru │ │ │ └── notifications.php │ │ │ ├── tr │ │ │ └── notifications.php │ │ │ ├── uk │ │ │ └── notifications.php │ │ │ └── zh-TW │ │ │ └── notifications.php │ ├── vi │ │ └── web.php │ ├── zh-cn │ │ ├── auth.php │ │ ├── exception.php │ │ ├── helpcenter.php │ │ ├── navmenu.php │ │ ├── notification.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── profile.php │ │ ├── site.php │ │ ├── timeline.php │ │ ├── validation.php │ │ └── web.php │ ├── zh-tw │ │ ├── auth.php │ │ ├── navmenu.php │ │ ├── notification.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── profile.php │ │ ├── site.php │ │ ├── timeline.php │ │ ├── validation.php │ │ └── web.php │ └── zh │ │ └── web.php └── views │ ├── account │ ├── activity.blade.php │ ├── circles │ │ ├── create.blade.php │ │ └── home.blade.php │ ├── direct.blade.php │ ├── directmessage.blade.php │ ├── email │ │ └── request_verification.blade.php │ ├── follow-requests.blade.php │ ├── following.blade.php │ ├── moderation │ │ └── post │ │ │ ├── autospam.blade.php │ │ │ ├── cw.blade.php │ │ │ ├── removed.blade.php │ │ │ └── unlist.blade.php │ ├── verify_email.blade.php │ └── yir.blade.php │ ├── admin │ ├── apps │ │ ├── home.blade.php │ │ └── show.blade.php │ ├── asf │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ └── home.blade.php │ ├── autospam │ │ └── home.blade.php │ ├── curated-register │ │ ├── index.blade.php │ │ ├── partials │ │ │ ├── activity-log.blade.php │ │ │ ├── nav.blade.php │ │ │ └── not-enabled.blade.php │ │ ├── show.blade.php │ │ ├── template-create.blade.php │ │ ├── template-edit.blade.php │ │ └── templates.blade.php │ ├── custom-emoji │ │ ├── add.blade.php │ │ ├── duplicates.blade.php │ │ ├── home.blade.php │ │ └── not-enabled.blade.php │ ├── diagnostics │ │ └── home.blade.php │ ├── directory │ │ └── home.blade.php │ ├── discover │ │ ├── create-category.blade.php │ │ ├── home.blade.php │ │ └── show.blade.php │ ├── hashtags │ │ ├── home.blade.php │ │ └── show.blade.php │ ├── home.blade.php │ ├── instances │ │ ├── home.blade.php │ │ └── show.blade.php │ ├── media │ │ ├── home.blade.php │ │ └── show.blade.php │ ├── messages │ │ ├── home.blade.php │ │ └── show.blade.php │ ├── newsroom │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ └── home.blade.php │ ├── pages │ │ ├── edit.blade.php │ │ └── home.blade.php │ ├── partial │ │ ├── nav.blade.php │ │ ├── sidebar.blade.php │ │ ├── sidenav.blade.php │ │ ├── template-full.blade.php │ │ ├── template.blade.php │ │ └── topnav.blade.php │ ├── profiles │ │ ├── edit.blade.php │ │ └── home.blade.php │ ├── reports │ │ ├── appeals.blade.php │ │ ├── home.blade.php │ │ ├── mail_verification.blade.php │ │ ├── show.blade.php │ │ ├── show_appeal.blade.php │ │ ├── show_spam.blade.php │ │ └── spam.blade.php │ ├── settings │ │ ├── backups.blade.php │ │ ├── config │ │ │ ├── cache.blade.php │ │ │ ├── database.blade.php │ │ │ ├── filesystem.blade.php │ │ │ └── general.blade.php │ │ ├── customcss.blade.php │ │ ├── features.blade.php │ │ ├── home.blade.php │ │ ├── maintenance.blade.php │ │ ├── sidebar.blade.php │ │ ├── storage.blade.php │ │ └── system.blade.php │ ├── stats.blade.php │ ├── statuses │ │ ├── home.blade.php │ │ └── show.blade.php │ ├── stories │ │ └── home.blade.php │ └── users │ │ ├── activity.blade.php │ │ ├── delete.blade.php │ │ ├── edit.blade.php │ │ ├── home.blade.php │ │ ├── message.blade.php │ │ ├── modlogs.blade.php │ │ ├── modtools.blade.php │ │ └── show.blade.php │ ├── atom │ └── user.blade.php │ ├── auth │ ├── checkpoint.blade.php │ ├── curated-register │ │ ├── concierge.blade.php │ │ ├── concierge_form.blade.php │ │ ├── confirm_email.blade.php │ │ ├── email_confirmed.blade.php │ │ ├── index.blade.php │ │ ├── partials │ │ │ ├── message-email-confirm.blade.php │ │ │ ├── progress-bar.blade.php │ │ │ ├── server-rules.blade.php │ │ │ ├── step-1.blade.php │ │ │ ├── step-2.blade.php │ │ │ ├── step-3.blade.php │ │ │ └── step-4.blade.php │ │ ├── resend-confirmation.blade.php │ │ ├── resent-confirmation.blade.php │ │ └── user_response_sent.blade.php │ ├── email │ │ └── forgot.blade.php │ ├── iar-resend.blade.php │ ├── iar.blade.php │ ├── login.blade.php │ ├── passwords │ │ ├── email.blade.php │ │ └── reset.blade.php │ ├── register.blade.php │ ├── remote │ │ ├── onboarding.blade.php │ │ └── start.blade.php │ └── sudo.blade.php │ ├── collection │ ├── create.blade.php │ └── show.blade.php │ ├── components │ └── collapse.blade.php │ ├── discover │ ├── home.blade.php │ ├── loops │ │ └── home.blade.php │ ├── personal.blade.php │ ├── places │ │ ├── directory │ │ │ ├── cities.blade.php │ │ │ └── home.blade.php │ │ └── show.blade.php │ ├── profiles │ │ └── home.blade.php │ └── tags │ │ ├── category.blade.php │ │ └── show.blade.php │ ├── emails │ ├── admin │ │ ├── new_autospam.blade.php │ │ └── new_report.blade.php │ ├── confirm_app_email.blade.php │ ├── confirm_email.blade.php │ ├── contact │ │ ├── admin-response.blade.php │ │ └── admin.blade.php │ ├── curated-register │ │ ├── admin_notify.blade.php │ │ ├── admin_notify_user_response.blade.php │ │ ├── confirm_email.blade.php │ │ ├── message-from-admin.blade.php │ │ ├── request-accepted.blade.php │ │ ├── request-details-from-user.blade.php │ │ └── request-rejected.blade.php │ ├── forgot-email │ │ └── message.blade.php │ ├── iar │ │ └── email_verify.blade.php │ ├── notification │ │ ├── admin_message.blade.php │ │ ├── email_change.blade.php │ │ └── password_change.blade.php │ └── parental-controls │ │ └── invite.blade.php │ ├── errors │ ├── 400.blade.php │ ├── 403.blade.php │ ├── 404.blade.php │ ├── 500.blade.php │ ├── 503.blade.php │ └── custom.blade.php │ ├── federation │ └── remotefollow.blade.php │ ├── groups │ ├── confirm-leave.blade.php │ ├── index.blade.php │ ├── invite-claim.blade.php │ ├── invite.blade.php │ ├── profile.blade.php │ ├── report.blade.php │ ├── settings.blade.php │ ├── show.blade.php │ ├── status.blade.php │ ├── topic-feed.blade.php │ └── unavailable.blade.php │ ├── home.blade.php │ ├── installer │ └── index.blade.php │ ├── invite │ └── admin_invite.blade.php │ ├── layouts │ ├── admin.blade.php │ ├── anon.blade.php │ ├── app-guest.blade.php │ ├── app.blade.php │ ├── blank.blade.php │ ├── bundle.blade.php │ ├── partial │ │ ├── footer.blade.php │ │ ├── nav.blade.php │ │ └── noauthnav.blade.php │ └── spa.blade.php │ ├── live │ └── player.blade.php │ ├── mobile │ ├── privacy.blade.php │ └── terms.blade.php │ ├── portfolio │ ├── 404.blade.php │ ├── index.blade.php │ ├── layout.blade.php │ ├── rss_feed.blade.php │ ├── settings.blade.php │ ├── show.blade.php │ └── show_post.blade.php │ ├── profile │ ├── disabled.blade.php │ ├── embed-removed.blade.php │ ├── embed.blade.php │ ├── partial │ │ └── private-info.blade.php │ ├── private.blade.php │ ├── show.blade.php │ ├── show_carousel.blade.php │ └── story.blade.php │ ├── pxtv │ └── home.blade.php │ ├── report │ ├── abusive │ │ ├── comment.blade.php │ │ ├── post.blade.php │ │ └── profile.blade.php │ ├── form.blade.php │ ├── not-interested.blade.php │ ├── sensitive │ │ ├── comment.blade.php │ │ ├── post.blade.php │ │ └── profile.blade.php │ ├── spam.blade.php │ └── spam │ │ ├── comment.blade.php │ │ ├── post.blade.php │ │ └── profile.blade.php │ ├── search │ └── results.blade.php │ ├── settings │ ├── accessibility.blade.php │ ├── aliases │ │ └── index.blade.php │ ├── applications.blade.php │ ├── avatar.blade.php │ ├── dataexport.blade.php │ ├── developers.blade.php │ ├── drive │ │ └── index.blade.php │ ├── email.blade.php │ ├── filters │ │ └── home.blade.php │ ├── home.blade.php │ ├── import │ │ ├── home.blade.php │ │ ├── ig.blade.php │ │ ├── instagram │ │ │ ├── home.blade.php │ │ │ ├── step-one.blade.php │ │ │ ├── step-three.blade.php │ │ │ └── step-two.blade.php │ │ └── mastodon │ │ │ └── home.blade.php │ ├── invites │ │ ├── create.blade.php │ │ └── home.blade.php │ ├── labs.blade.php │ ├── media.blade.php │ ├── migration │ │ └── index.blade.php │ ├── notifications.blade.php │ ├── parental-controls │ │ ├── add.blade.php │ │ ├── checkbox.blade.php │ │ ├── child-status.blade.php │ │ ├── delete-invite.blade.php │ │ ├── index.blade.php │ │ ├── invite-register-form.blade.php │ │ ├── manage.blade.php │ │ └── stop-managing.blade.php │ ├── partial │ │ └── sidebar.blade.php │ ├── password.blade.php │ ├── privacy.blade.php │ ├── privacy │ │ ├── blocked-instances.blade.php │ │ ├── blocked-keywords.blade.php │ │ ├── blocked.blade.php │ │ ├── domain-blocks.blade.php │ │ └── muted.blade.php │ ├── relationships │ │ └── home.blade.php │ ├── remove │ │ ├── permanent.blade.php │ │ └── temporary.blade.php │ ├── security.blade.php │ ├── security │ │ ├── 2fa │ │ │ ├── edit.blade.php │ │ │ ├── partial │ │ │ │ ├── disabled-panel.blade.php │ │ │ │ └── edit-panel.blade.php │ │ │ ├── recovery-codes.blade.php │ │ │ └── setup.blade.php │ │ ├── device-panel.blade.php │ │ └── log-panel.blade.php │ ├── sponsor.blade.php │ ├── template-vue.blade.php │ ├── template.blade.php │ └── timeline.blade.php │ ├── site │ ├── about-custom.blade.php │ ├── about.blade.php │ ├── bannedinstances.blade.php │ ├── closed-registration.blade.php │ ├── contact.blade.php │ ├── contact │ │ └── admin-response.blade.php │ ├── developer.blade.php │ ├── features.blade.php │ ├── fediverse.blade.php │ ├── help.blade.php │ ├── help │ │ ├── account-migration.blade.php │ │ ├── blocking-accounts.blade.php │ │ ├── community-guidelines.blade.php │ │ ├── controlling-visibility.blade.php │ │ ├── curated-onboarding.blade.php │ │ ├── data-policy.blade.php │ │ ├── discover.blade.php │ │ ├── dm.blade.php │ │ ├── email-confirmation-issues.blade.php │ │ ├── embed.blade.php │ │ ├── getting-started.blade.php │ │ ├── hashtags.blade.php │ │ ├── import.blade.php │ │ ├── instance-actor.blade.php │ │ ├── instance-max-users.blade.php │ │ ├── labs-deprecation.blade.php │ │ ├── licenses.blade.php │ │ ├── parental-controls.blade.php │ │ ├── partial │ │ │ ├── sidebar.blade.php │ │ │ └── template.blade.php │ │ ├── report-something.blade.php │ │ ├── safety-tips.blade.php │ │ ├── sharing-media.blade.php │ │ ├── stories.blade.php │ │ ├── tagging-people.blade.php │ │ ├── timelines.blade.php │ │ ├── what-is-fediverse.blade.php │ │ └── your-profile.blade.php │ ├── index.blade.php │ ├── intents │ │ └── follow.blade.php │ ├── language.blade.php │ ├── legal-notice.blade.php │ ├── libraries.blade.php │ ├── news │ │ ├── archive │ │ │ └── index.blade.php │ │ ├── home.blade.php │ │ ├── partial │ │ │ ├── layout.blade.php │ │ │ └── nav.blade.php │ │ └── post │ │ │ └── show.blade.php │ ├── opensource.blade.php │ ├── partial │ │ ├── sidebar.blade.php │ │ └── template.blade.php │ ├── platform.blade.php │ ├── privacy.blade.php │ ├── redirect.blade.php │ └── terms.blade.php │ ├── status │ ├── compose.blade.php │ ├── edit.blade.php │ ├── embed-removed.blade.php │ ├── embed.blade.php │ ├── reply.blade.php │ ├── show.blade.php │ └── template.blade.php │ ├── stories │ ├── compose.blade.php │ ├── home.blade.php │ └── show_remote.blade.php │ ├── timeline │ ├── home.blade.php │ ├── local.blade.php │ └── network.blade.php │ ├── vendor │ ├── mail │ │ ├── html │ │ │ ├── button.blade.php │ │ │ ├── footer.blade.php │ │ │ ├── header.blade.php │ │ │ ├── layout.blade.php │ │ │ ├── message.blade.php │ │ │ ├── panel.blade.php │ │ │ ├── promotion.blade.php │ │ │ ├── promotion │ │ │ │ └── button.blade.php │ │ │ ├── subcopy.blade.php │ │ │ ├── table.blade.php │ │ │ └── themes │ │ │ │ └── default.css │ │ └── text │ │ │ ├── button.blade.php │ │ │ ├── footer.blade.php │ │ │ ├── header.blade.php │ │ │ ├── layout.blade.php │ │ │ ├── message.blade.php │ │ │ ├── panel.blade.php │ │ │ ├── promotion.blade.php │ │ │ ├── promotion │ │ │ └── button.blade.php │ │ │ ├── subcopy.blade.php │ │ │ └── table.blade.php │ ├── pagination │ │ ├── bootstrap-4.blade.php │ │ ├── default.blade.php │ │ ├── semantic-ui.blade.php │ │ ├── simple-bootstrap-4.blade.php │ │ └── simple-default.blade.php │ ├── passport │ │ └── authorize.blade.php │ └── pulse │ │ └── dashboard.blade.php │ └── welcome.blade.php ├── routes ├── api.php ├── channels.php ├── console.php ├── web-admin.php ├── web-api.php ├── web-portfolio.php └── web.php ├── scripts ├── artisan ├── check-requirements ├── clear-cache ├── debug-info ├── dottie ├── feature ├── gum ├── lib │ └── shared.sh ├── set-recommended-versions ├── setup ├── shell └── update ├── server.php ├── shell.nix ├── storage ├── app │ ├── .gitignore │ ├── backups │ │ └── .gitignore │ ├── bouncer │ │ ├── .gitignore │ │ └── all.json │ ├── cities.json │ ├── nlp │ │ └── .gitignore │ ├── public │ │ ├── .gitignore │ │ ├── avatars │ │ │ ├── .gitignore │ │ │ ├── default.jpg │ │ │ └── default.png │ │ ├── emoji │ │ │ ├── .gitignore │ │ │ └── missing.png │ │ ├── headers │ │ │ ├── .gitignore │ │ │ ├── default.jpg │ │ │ └── missing.png │ │ ├── live-hls │ │ │ └── .gitignore │ │ ├── m │ │ │ └── .gitignore │ │ ├── no-preview.png │ │ └── textimg │ │ │ ├── .gitignore │ │ │ └── bg_1.jpg │ └── remcache │ │ └── .gitignore ├── debugbar │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore ├── logs │ └── .gitignore └── purify │ └── .gitignore ├── tests ├── CreatesApplication.php ├── Feature │ ├── LoginTest.php │ └── RemoteOidcTest.php ├── TestCase.php ├── Unit │ ├── APAnnounceStrategyTest.php │ ├── ActivityPub │ │ ├── AudienceScopeTest.php │ │ ├── NoteAttachmentTest.php │ │ ├── RemoteFollowTest.php │ │ ├── StoryValidationTest.php │ │ ├── UpdatePersonValidationTest.php │ │ └── Verb │ │ │ ├── AcceptVerbTest.php │ │ │ ├── AnnounceTest.php │ │ │ ├── FollowTest.php │ │ │ ├── LikeTest.php │ │ │ └── UndoFollowTest.php │ ├── ActivityPubTagObjectTest.php │ ├── BearcapTest.php │ ├── CryptoTest.php │ ├── Lexer │ │ ├── RestrictedNameTest.php │ │ ├── StatusLexerTest.php │ │ └── UsernameTest.php │ ├── PurifierTest.php │ └── WebfingerTest.php └── database.sqlite └── webpack.mix.js /.ddev/commands/redis/redis-cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/.ddev/commands/redis/redis-cli -------------------------------------------------------------------------------- /.ddev/config.mariadb.yaml.override: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/.ddev/config.mariadb.yaml.override -------------------------------------------------------------------------------- /.ddev/config.mysql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/.ddev/config.mysql.yaml -------------------------------------------------------------------------------- /.ddev/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/.ddev/config.yaml -------------------------------------------------------------------------------- /.ddev/docker-compose.redis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/.ddev/docker-compose.redis.yaml -------------------------------------------------------------------------------- /.ddev/redis/redis.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/.ddev/redis/redis.conf -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.docker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/.env.docker -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/.env.example -------------------------------------------------------------------------------- /.env.testing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/.env.testing -------------------------------------------------------------------------------- /.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/.markdownlint.json -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | v14.20.1 2 | -------------------------------------------------------------------------------- /.shellcheckrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/.shellcheckrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/SECURITY.md -------------------------------------------------------------------------------- /app/AccountInterstitial.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/AccountInterstitial.php -------------------------------------------------------------------------------- /app/AccountLog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/AccountLog.php -------------------------------------------------------------------------------- /app/Activity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Activity.php -------------------------------------------------------------------------------- /app/Auth/BearerTokenResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Auth/BearerTokenResponse.php -------------------------------------------------------------------------------- /app/Avatar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Avatar.php -------------------------------------------------------------------------------- /app/Bookmark.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Bookmark.php -------------------------------------------------------------------------------- /app/Circle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Circle.php -------------------------------------------------------------------------------- /app/CircleProfile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/CircleProfile.php -------------------------------------------------------------------------------- /app/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Collection.php -------------------------------------------------------------------------------- /app/CollectionItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/CollectionItem.php -------------------------------------------------------------------------------- /app/Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Comment.php -------------------------------------------------------------------------------- /app/Console/Commands/FixLikes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Console/Commands/FixLikes.php -------------------------------------------------------------------------------- /app/Console/Commands/Installer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Console/Commands/Installer.php -------------------------------------------------------------------------------- /app/Console/Commands/MediaFix.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Console/Commands/MediaFix.php -------------------------------------------------------------------------------- /app/Console/Commands/StoryGC.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Console/Commands/StoryGC.php -------------------------------------------------------------------------------- /app/Console/Commands/UserAdmin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Console/Commands/UserAdmin.php -------------------------------------------------------------------------------- /app/Console/Commands/UserShow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Console/Commands/UserShow.php -------------------------------------------------------------------------------- /app/Console/Commands/UserTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Console/Commands/UserTable.php -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Contact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Contact.php -------------------------------------------------------------------------------- /app/DirectMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/DirectMessage.php -------------------------------------------------------------------------------- /app/DiscoverCategory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/DiscoverCategory.php -------------------------------------------------------------------------------- /app/DiscoverCategoryHashtag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/DiscoverCategoryHashtag.php -------------------------------------------------------------------------------- /app/EmailVerification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/EmailVerification.php -------------------------------------------------------------------------------- /app/Events/LiveStream/BanUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Events/LiveStream/BanUser.php -------------------------------------------------------------------------------- /app/Events/NewMention.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Events/NewMention.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/FailedJob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/FailedJob.php -------------------------------------------------------------------------------- /app/FollowRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/FollowRequest.php -------------------------------------------------------------------------------- /app/Follower.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Follower.php -------------------------------------------------------------------------------- /app/HasSnowflakePrimary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/HasSnowflakePrimary.php -------------------------------------------------------------------------------- /app/Hashtag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Hashtag.php -------------------------------------------------------------------------------- /app/HashtagFollow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/HashtagFollow.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/Admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Http/Middleware/Admin.php -------------------------------------------------------------------------------- /app/Http/Middleware/Api/Admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Http/Middleware/Api/Admin.php -------------------------------------------------------------------------------- /app/Http/Middleware/DangerZone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Http/Middleware/DangerZone.php -------------------------------------------------------------------------------- /app/Http/Middleware/FrameGuard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Http/Middleware/FrameGuard.php -------------------------------------------------------------------------------- /app/Http/Resources/AdminReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Http/Resources/AdminReport.php -------------------------------------------------------------------------------- /app/Http/Resources/AdminUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Http/Resources/AdminUser.php -------------------------------------------------------------------------------- /app/Http/Resources/StoryView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Http/Resources/StoryView.php -------------------------------------------------------------------------------- /app/ImportData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/ImportData.php -------------------------------------------------------------------------------- /app/ImportJob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/ImportJob.php -------------------------------------------------------------------------------- /app/Instance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Instance.php -------------------------------------------------------------------------------- /app/Like.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Like.php -------------------------------------------------------------------------------- /app/Listeners/AuthLogin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Listeners/AuthLogin.php -------------------------------------------------------------------------------- /app/Listeners/LogFailedLogin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Listeners/LogFailedLogin.php -------------------------------------------------------------------------------- /app/Mail/AdminMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Mail/AdminMessage.php -------------------------------------------------------------------------------- /app/Mail/AdminMessageResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Mail/AdminMessageResponse.php -------------------------------------------------------------------------------- /app/Mail/AdminNewAutospam.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Mail/AdminNewAutospam.php -------------------------------------------------------------------------------- /app/Mail/AdminNewReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Mail/AdminNewReport.php -------------------------------------------------------------------------------- /app/Mail/ConfirmAppEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Mail/ConfirmAppEmail.php -------------------------------------------------------------------------------- /app/Mail/ConfirmEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Mail/ConfirmEmail.php -------------------------------------------------------------------------------- /app/Mail/ContactAdmin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Mail/ContactAdmin.php -------------------------------------------------------------------------------- /app/Mail/EmailChange.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Mail/EmailChange.php -------------------------------------------------------------------------------- /app/Mail/ParentChildInvite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Mail/ParentChildInvite.php -------------------------------------------------------------------------------- /app/Mail/PasswordChange.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Mail/PasswordChange.php -------------------------------------------------------------------------------- /app/Media.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Media.php -------------------------------------------------------------------------------- /app/MediaBlocklist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/MediaBlocklist.php -------------------------------------------------------------------------------- /app/MediaTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/MediaTag.php -------------------------------------------------------------------------------- /app/Mention.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Mention.php -------------------------------------------------------------------------------- /app/ModLog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/ModLog.php -------------------------------------------------------------------------------- /app/Models/AdminInvite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Models/AdminInvite.php -------------------------------------------------------------------------------- /app/Models/AdminShadowFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Models/AdminShadowFilter.php -------------------------------------------------------------------------------- /app/Models/AppRegister.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Models/AppRegister.php -------------------------------------------------------------------------------- /app/Models/ConfigCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Models/ConfigCache.php -------------------------------------------------------------------------------- /app/Models/Conversation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Models/Conversation.php -------------------------------------------------------------------------------- /app/Models/CuratedRegister.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Models/CuratedRegister.php -------------------------------------------------------------------------------- /app/Models/CustomEmoji.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Models/CustomEmoji.php -------------------------------------------------------------------------------- /app/Models/CustomFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Models/CustomFilter.php -------------------------------------------------------------------------------- /app/Models/CustomFilterKeyword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Models/CustomFilterKeyword.php -------------------------------------------------------------------------------- /app/Models/CustomFilterStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Models/CustomFilterStatus.php -------------------------------------------------------------------------------- /app/Models/Group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Models/Group.php -------------------------------------------------------------------------------- /app/Models/GroupBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Models/GroupBlock.php -------------------------------------------------------------------------------- /app/Models/GroupCategory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Models/GroupCategory.php -------------------------------------------------------------------------------- /app/Models/GroupComment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Models/GroupComment.php -------------------------------------------------------------------------------- /app/Models/GroupEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Models/GroupEvent.php -------------------------------------------------------------------------------- /app/Models/GroupHashtag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Models/GroupHashtag.php -------------------------------------------------------------------------------- /app/Models/GroupInteraction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Models/GroupInteraction.php -------------------------------------------------------------------------------- /app/Models/GroupInvitation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Models/GroupInvitation.php -------------------------------------------------------------------------------- /app/Models/GroupLike.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Models/GroupLike.php -------------------------------------------------------------------------------- /app/Models/GroupLimit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Models/GroupLimit.php -------------------------------------------------------------------------------- /app/Models/GroupMedia.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Models/GroupMedia.php -------------------------------------------------------------------------------- /app/Models/GroupMember.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Models/GroupMember.php -------------------------------------------------------------------------------- /app/Models/GroupPost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Models/GroupPost.php -------------------------------------------------------------------------------- /app/Models/GroupPostHashtag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Models/GroupPostHashtag.php -------------------------------------------------------------------------------- /app/Models/GroupReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Models/GroupReport.php -------------------------------------------------------------------------------- /app/Models/GroupRole.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Models/GroupRole.php -------------------------------------------------------------------------------- /app/Models/GroupStore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Models/GroupStore.php -------------------------------------------------------------------------------- /app/Models/HashtagRelated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Models/HashtagRelated.php -------------------------------------------------------------------------------- /app/Models/ImportPost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Models/ImportPost.php -------------------------------------------------------------------------------- /app/Models/InstanceActor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Models/InstanceActor.php -------------------------------------------------------------------------------- /app/Models/LiveStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Models/LiveStream.php -------------------------------------------------------------------------------- /app/Models/ModeratedProfile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Models/ModeratedProfile.php -------------------------------------------------------------------------------- /app/Models/ParentalControls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Models/ParentalControls.php -------------------------------------------------------------------------------- /app/Models/Poll.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Models/Poll.php -------------------------------------------------------------------------------- /app/Models/PollVote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Models/PollVote.php -------------------------------------------------------------------------------- /app/Models/Portfolio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Models/Portfolio.php -------------------------------------------------------------------------------- /app/Models/ProfileAlias.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Models/ProfileAlias.php -------------------------------------------------------------------------------- /app/Models/ProfileMigration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Models/ProfileMigration.php -------------------------------------------------------------------------------- /app/Models/RemoteAuth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Models/RemoteAuth.php -------------------------------------------------------------------------------- /app/Models/RemoteReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Models/RemoteReport.php -------------------------------------------------------------------------------- /app/Models/StatusEdit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Models/StatusEdit.php -------------------------------------------------------------------------------- /app/Models/UserAppSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Models/UserAppSettings.php -------------------------------------------------------------------------------- /app/Models/UserDomainBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Models/UserDomainBlock.php -------------------------------------------------------------------------------- /app/Models/UserEmailForgot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Models/UserEmailForgot.php -------------------------------------------------------------------------------- /app/Models/UserOidcMapping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Models/UserOidcMapping.php -------------------------------------------------------------------------------- /app/Models/UserPronoun.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Models/UserPronoun.php -------------------------------------------------------------------------------- /app/Models/UserRoles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Models/UserRoles.php -------------------------------------------------------------------------------- /app/Newsroom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Newsroom.php -------------------------------------------------------------------------------- /app/Notification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Notification.php -------------------------------------------------------------------------------- /app/OauthClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/OauthClient.php -------------------------------------------------------------------------------- /app/Observers/LikeObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Observers/LikeObserver.php -------------------------------------------------------------------------------- /app/Observers/UserObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Observers/UserObserver.php -------------------------------------------------------------------------------- /app/Page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Page.php -------------------------------------------------------------------------------- /app/Place.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Place.php -------------------------------------------------------------------------------- /app/Profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Profile.php -------------------------------------------------------------------------------- /app/ProfileSponsor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/ProfileSponsor.php -------------------------------------------------------------------------------- /app/Report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Report.php -------------------------------------------------------------------------------- /app/ReportComment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/ReportComment.php -------------------------------------------------------------------------------- /app/ReportLog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/ReportLog.php -------------------------------------------------------------------------------- /app/Rules/EmailNotBanned.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Rules/EmailNotBanned.php -------------------------------------------------------------------------------- /app/Rules/ExpoPushTokenRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Rules/ExpoPushTokenRule.php -------------------------------------------------------------------------------- /app/Rules/MaxMultiLine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Rules/MaxMultiLine.php -------------------------------------------------------------------------------- /app/Rules/PixelfedUsername.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Rules/PixelfedUsername.php -------------------------------------------------------------------------------- /app/Rules/ValidUrl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Rules/ValidUrl.php -------------------------------------------------------------------------------- /app/Rules/Webfinger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Rules/Webfinger.php -------------------------------------------------------------------------------- /app/Services/AccountService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Services/AccountService.php -------------------------------------------------------------------------------- /app/Services/AvatarService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Services/AvatarService.php -------------------------------------------------------------------------------- /app/Services/BouncerService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Services/BouncerService.php -------------------------------------------------------------------------------- /app/Services/DomainService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Services/DomainService.php -------------------------------------------------------------------------------- /app/Services/EmailService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Services/EmailService.php -------------------------------------------------------------------------------- /app/Services/GroupService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Services/GroupService.php -------------------------------------------------------------------------------- /app/Services/HashidService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Services/HashidService.php -------------------------------------------------------------------------------- /app/Services/HashtagService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Services/HashtagService.php -------------------------------------------------------------------------------- /app/Services/ImportService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Services/ImportService.php -------------------------------------------------------------------------------- /app/Services/LandingService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Services/LandingService.php -------------------------------------------------------------------------------- /app/Services/LikeService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Services/LikeService.php -------------------------------------------------------------------------------- /app/Services/MarkerService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Services/MarkerService.php -------------------------------------------------------------------------------- /app/Services/MediaService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Services/MediaService.php -------------------------------------------------------------------------------- /app/Services/ModLogService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Services/ModLogService.php -------------------------------------------------------------------------------- /app/Services/PlaceService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Services/PlaceService.php -------------------------------------------------------------------------------- /app/Services/PollService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Services/PollService.php -------------------------------------------------------------------------------- /app/Services/ProfileService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Services/ProfileService.php -------------------------------------------------------------------------------- /app/Services/PronounService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Services/PronounService.php -------------------------------------------------------------------------------- /app/Services/ReblogService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Services/ReblogService.php -------------------------------------------------------------------------------- /app/Services/StatusService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Services/StatusService.php -------------------------------------------------------------------------------- /app/Services/StoryService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Services/StoryService.php -------------------------------------------------------------------------------- /app/Status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Status.php -------------------------------------------------------------------------------- /app/StatusArchived.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/StatusArchived.php -------------------------------------------------------------------------------- /app/StatusHashtag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/StatusHashtag.php -------------------------------------------------------------------------------- /app/StatusView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/StatusView.php -------------------------------------------------------------------------------- /app/Story.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Story.php -------------------------------------------------------------------------------- /app/StoryItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/StoryItem.php -------------------------------------------------------------------------------- /app/StoryReaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/StoryReaction.php -------------------------------------------------------------------------------- /app/StoryView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/StoryView.php -------------------------------------------------------------------------------- /app/UIKit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/UIKit.php -------------------------------------------------------------------------------- /app/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/User.php -------------------------------------------------------------------------------- /app/UserDevice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/UserDevice.php -------------------------------------------------------------------------------- /app/UserFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/UserFilter.php -------------------------------------------------------------------------------- /app/UserInvite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/UserInvite.php -------------------------------------------------------------------------------- /app/UserSetting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/UserSetting.php -------------------------------------------------------------------------------- /app/Util/ActivityPub/Inbox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Util/ActivityPub/Inbox.php -------------------------------------------------------------------------------- /app/Util/ActivityPub/Outbox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Util/ActivityPub/Outbox.php -------------------------------------------------------------------------------- /app/Util/Blurhash/AC.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Util/Blurhash/AC.php -------------------------------------------------------------------------------- /app/Util/Blurhash/Base83.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Util/Blurhash/Base83.php -------------------------------------------------------------------------------- /app/Util/Blurhash/Blurhash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Util/Blurhash/Blurhash.php -------------------------------------------------------------------------------- /app/Util/Blurhash/Color.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Util/Blurhash/Color.php -------------------------------------------------------------------------------- /app/Util/Blurhash/DC.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Util/Blurhash/DC.php -------------------------------------------------------------------------------- /app/Util/Lexer/Autolink.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Util/Lexer/Autolink.php -------------------------------------------------------------------------------- /app/Util/Lexer/Bearcap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Util/Lexer/Bearcap.php -------------------------------------------------------------------------------- /app/Util/Lexer/Classifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Util/Lexer/Classifier.php -------------------------------------------------------------------------------- /app/Util/Lexer/Extractor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Util/Lexer/Extractor.php -------------------------------------------------------------------------------- /app/Util/Lexer/Hashtag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Util/Lexer/Hashtag.php -------------------------------------------------------------------------------- /app/Util/Lexer/Nickname.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Util/Lexer/Nickname.php -------------------------------------------------------------------------------- /app/Util/Lexer/PrettyNumber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Util/Lexer/PrettyNumber.php -------------------------------------------------------------------------------- /app/Util/Lexer/Regex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Util/Lexer/Regex.php -------------------------------------------------------------------------------- /app/Util/Lexer/StringUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Util/Lexer/StringUtils.php -------------------------------------------------------------------------------- /app/Util/Lexer/Validator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Util/Lexer/Validator.php -------------------------------------------------------------------------------- /app/Util/Media/Blurhash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Util/Media/Blurhash.php -------------------------------------------------------------------------------- /app/Util/Media/Filter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Util/Media/Filter.php -------------------------------------------------------------------------------- /app/Util/Media/Image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Util/Media/Image.php -------------------------------------------------------------------------------- /app/Util/Media/License.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Util/Media/License.php -------------------------------------------------------------------------------- /app/Util/RateLimit/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Util/RateLimit/User.php -------------------------------------------------------------------------------- /app/Util/Sentiment/Bouncer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Util/Sentiment/Bouncer.php -------------------------------------------------------------------------------- /app/Util/Site/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Util/Site/Config.php -------------------------------------------------------------------------------- /app/Util/Site/Nodeinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/Util/Site/Nodeinfo.php -------------------------------------------------------------------------------- /app/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/app/helpers.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/composer.lock -------------------------------------------------------------------------------- /config/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/config/api.php -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/autospam.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/config/autospam.php -------------------------------------------------------------------------------- /config/backup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/config/backup.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/captcha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/config/captcha.php -------------------------------------------------------------------------------- /config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/config/cors.php -------------------------------------------------------------------------------- /config/costar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/config/costar.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/config/database.php -------------------------------------------------------------------------------- /config/debugbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/config/debugbar.php -------------------------------------------------------------------------------- /config/dotenv-editor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/config/dotenv-editor.php -------------------------------------------------------------------------------- /config/exp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/config/exp.php -------------------------------------------------------------------------------- /config/federation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/config/federation.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/groups.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/config/groups.php -------------------------------------------------------------------------------- /config/hashids.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/config/hashids.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/horizon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/config/horizon.php -------------------------------------------------------------------------------- /config/image-optimizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/config/image-optimizer.php -------------------------------------------------------------------------------- /config/image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/config/image.php -------------------------------------------------------------------------------- /config/import.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/config/import.php -------------------------------------------------------------------------------- /config/instance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/config/instance.php -------------------------------------------------------------------------------- /config/laravel-ffmpeg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/config/laravel-ffmpeg.php -------------------------------------------------------------------------------- /config/ldap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/config/ldap.php -------------------------------------------------------------------------------- /config/livestreaming.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/config/livestreaming.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/media.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/config/media.php -------------------------------------------------------------------------------- /config/passport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/config/passport.php -------------------------------------------------------------------------------- /config/pixelfed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/config/pixelfed.php -------------------------------------------------------------------------------- /config/portfolio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/config/portfolio.php -------------------------------------------------------------------------------- /config/pulse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/config/pulse.php -------------------------------------------------------------------------------- /config/purify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/config/purify.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/remote-auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/config/remote-auth.php -------------------------------------------------------------------------------- /config/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/config/routes.php -------------------------------------------------------------------------------- /config/security.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/config/security.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/config/session.php -------------------------------------------------------------------------------- /config/snowflake.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/config/snowflake.php -------------------------------------------------------------------------------- /config/telescope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/config/telescope.php -------------------------------------------------------------------------------- /config/trending.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/config/trending.php -------------------------------------------------------------------------------- /config/trustedproxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/config/trustedproxy.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/config/view.php -------------------------------------------------------------------------------- /config/webpush.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/config/webpush.php -------------------------------------------------------------------------------- /config/websockets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/config/websockets.php -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/crowdin.yml -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | -------------------------------------------------------------------------------- /docker-compose.build..yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/docker-compose.build..yml -------------------------------------------------------------------------------- /docker-compose.simple.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/docker-compose.simple.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/.env.testing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/docker/.env.testing -------------------------------------------------------------------------------- /docker/.hadolint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/docker/.hadolint.yaml -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/Dockerfile.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/docker/Dockerfile.dockerignore -------------------------------------------------------------------------------- /docker/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/docker/LICENSE -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/docker/README.md -------------------------------------------------------------------------------- /docker/goss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/docker/goss.yaml -------------------------------------------------------------------------------- /docker/goss_wait.yaml: -------------------------------------------------------------------------------- 1 | file: 2 | /tmp/entrypoint-ran-to-completion: 3 | exists: true 4 | -------------------------------------------------------------------------------- /docker/rootfs/shared/shared/proxy/conf.d/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker/tests/bats.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/docker/tests/bats.Dockerfile -------------------------------------------------------------------------------- /docker/tests/bats/helpers.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/docker/tests/bats/helpers.bats -------------------------------------------------------------------------------- /docker/tests/e2e.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/docker/tests/e2e.sh -------------------------------------------------------------------------------- /docker/tests/goss.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/docker/tests/goss.sh -------------------------------------------------------------------------------- /docker/tests/run-bats-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/docker/tests/run-bats-tests.sh -------------------------------------------------------------------------------- /docker/tests/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/docker/tests/setup.sh -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/flake.nix -------------------------------------------------------------------------------- /funding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/funding.json -------------------------------------------------------------------------------- /goss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/goss.yaml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/_landing/1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/_landing/1.jpeg -------------------------------------------------------------------------------- /public/_landing/2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/_landing/2.jpeg -------------------------------------------------------------------------------- /public/_landing/3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/_landing/3.jpeg -------------------------------------------------------------------------------- /public/_landing/4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/_landing/4.jpeg -------------------------------------------------------------------------------- /public/_landing/5.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/_landing/5.jpeg -------------------------------------------------------------------------------- /public/_landing/6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/_landing/6.jpeg -------------------------------------------------------------------------------- /public/_landing/7.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/_landing/7.jpeg -------------------------------------------------------------------------------- /public/_landing/8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/_landing/8.jpeg -------------------------------------------------------------------------------- /public/_landing/9.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/_landing/9.jpeg -------------------------------------------------------------------------------- /public/_landing/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/_landing/bg.jpg -------------------------------------------------------------------------------- /public/_lang/af.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/_lang/af.json -------------------------------------------------------------------------------- /public/_lang/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/_lang/ar.json -------------------------------------------------------------------------------- /public/_lang/bn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/_lang/bn.json -------------------------------------------------------------------------------- /public/_lang/bs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/_lang/bs.json -------------------------------------------------------------------------------- /public/_lang/ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/_lang/ca.json -------------------------------------------------------------------------------- /public/_lang/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/_lang/cs.json -------------------------------------------------------------------------------- /public/_lang/cy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/_lang/cy.json -------------------------------------------------------------------------------- /public/_lang/da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/_lang/da.json -------------------------------------------------------------------------------- /public/_lang/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/_lang/de.json -------------------------------------------------------------------------------- /public/_lang/el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/_lang/el.json -------------------------------------------------------------------------------- /public/_lang/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/_lang/en.json -------------------------------------------------------------------------------- /public/_lang/eo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/_lang/eo.json -------------------------------------------------------------------------------- /public/_lang/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/_lang/es.json -------------------------------------------------------------------------------- /public/_lang/eu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/_lang/eu.json -------------------------------------------------------------------------------- /public/_lang/fa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/_lang/fa.json -------------------------------------------------------------------------------- /public/_lang/fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/_lang/fi.json -------------------------------------------------------------------------------- /public/_lang/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/_lang/fr.json -------------------------------------------------------------------------------- /public/_lang/gd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/_lang/gd.json -------------------------------------------------------------------------------- /public/_lang/gl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/_lang/gl.json -------------------------------------------------------------------------------- /public/_lang/he.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/_lang/he.json -------------------------------------------------------------------------------- /public/_lang/hi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/_lang/hi.json -------------------------------------------------------------------------------- /public/_lang/hr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/_lang/hr.json -------------------------------------------------------------------------------- /public/_lang/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/_lang/hu.json -------------------------------------------------------------------------------- /public/_lang/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/_lang/id.json -------------------------------------------------------------------------------- /public/_lang/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/_lang/it.json -------------------------------------------------------------------------------- /public/_lang/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/_lang/ja.json -------------------------------------------------------------------------------- /public/_lang/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/_lang/ko.json -------------------------------------------------------------------------------- /public/_lang/me.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/_lang/me.json -------------------------------------------------------------------------------- /public/_lang/mk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/_lang/mk.json -------------------------------------------------------------------------------- /public/_lang/ms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/_lang/ms.json -------------------------------------------------------------------------------- /public/_lang/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/_lang/nl.json -------------------------------------------------------------------------------- /public/_lang/no.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/_lang/no.json -------------------------------------------------------------------------------- /public/_lang/oc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/_lang/oc.json -------------------------------------------------------------------------------- /public/_lang/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/_lang/pl.json -------------------------------------------------------------------------------- /public/_lang/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/_lang/pt.json -------------------------------------------------------------------------------- /public/_lang/ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/_lang/ro.json -------------------------------------------------------------------------------- /public/_lang/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/_lang/ru.json -------------------------------------------------------------------------------- /public/_lang/sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/_lang/sk.json -------------------------------------------------------------------------------- /public/_lang/sr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/_lang/sr.json -------------------------------------------------------------------------------- /public/_lang/sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/_lang/sv.json -------------------------------------------------------------------------------- /public/_lang/th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/_lang/th.json -------------------------------------------------------------------------------- /public/_lang/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/_lang/tr.json -------------------------------------------------------------------------------- /public/_lang/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/_lang/uk.json -------------------------------------------------------------------------------- /public/_lang/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/_lang/vi.json -------------------------------------------------------------------------------- /public/_lang/zh-cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/_lang/zh-cn.json -------------------------------------------------------------------------------- /public/_lang/zh-tw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/_lang/zh-tw.json -------------------------------------------------------------------------------- /public/_lang/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/_lang/zh.json -------------------------------------------------------------------------------- /public/css/admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/css/admin.css -------------------------------------------------------------------------------- /public/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/css/app.css -------------------------------------------------------------------------------- /public/css/appdark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/css/appdark.css -------------------------------------------------------------------------------- /public/css/landing.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/css/landing.css -------------------------------------------------------------------------------- /public/css/portfolio.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/css/portfolio.css -------------------------------------------------------------------------------- /public/css/profile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/css/profile.css -------------------------------------------------------------------------------- /public/css/spa.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/css/spa.css -------------------------------------------------------------------------------- /public/embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/embed.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fonts/Manrope-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/fonts/Manrope-Bold.woff -------------------------------------------------------------------------------- /public/fonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/fonts/fa-brands-400.eot -------------------------------------------------------------------------------- /public/fonts/fa-brands-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/fonts/fa-brands-400.svg -------------------------------------------------------------------------------- /public/fonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/fonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /public/fonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/fonts/fa-brands-400.woff -------------------------------------------------------------------------------- /public/fonts/fa-light-300.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/fonts/fa-light-300.eot -------------------------------------------------------------------------------- /public/fonts/fa-light-300.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/fonts/fa-light-300.svg -------------------------------------------------------------------------------- /public/fonts/fa-light-300.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/fonts/fa-light-300.ttf -------------------------------------------------------------------------------- /public/fonts/fa-light-300.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/fonts/fa-light-300.woff -------------------------------------------------------------------------------- /public/fonts/fa-light-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/fonts/fa-light-300.woff2 -------------------------------------------------------------------------------- /public/fonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/fonts/fa-regular-400.eot -------------------------------------------------------------------------------- /public/fonts/fa-regular-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/fonts/fa-regular-400.svg -------------------------------------------------------------------------------- /public/fonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/fonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /public/fonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/fonts/fa-solid-900.eot -------------------------------------------------------------------------------- /public/fonts/fa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/fonts/fa-solid-900.svg -------------------------------------------------------------------------------- /public/fonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/fonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /public/fonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/fonts/fa-solid-900.woff -------------------------------------------------------------------------------- /public/fonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/fonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /public/fonts/nucleo-icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/fonts/nucleo-icons.eot -------------------------------------------------------------------------------- /public/fonts/nucleo-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/fonts/nucleo-icons.svg -------------------------------------------------------------------------------- /public/fonts/nucleo-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/fonts/nucleo-icons.ttf -------------------------------------------------------------------------------- /public/fonts/nucleo-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/fonts/nucleo-icons.woff -------------------------------------------------------------------------------- /public/fonts/nucleo-icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/fonts/nucleo-icons.woff2 -------------------------------------------------------------------------------- /public/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/favicon.png -------------------------------------------------------------------------------- /public/img/icon/archive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/archive.svg -------------------------------------------------------------------------------- /public/img/icon/arrow-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/arrow-down.svg -------------------------------------------------------------------------------- /public/img/icon/arrow-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/arrow-left.svg -------------------------------------------------------------------------------- /public/img/icon/arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/arrow-right.svg -------------------------------------------------------------------------------- /public/img/icon/arrow-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/arrow-up.svg -------------------------------------------------------------------------------- /public/img/icon/at.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/at.svg -------------------------------------------------------------------------------- /public/img/icon/bar-chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/bar-chart.svg -------------------------------------------------------------------------------- /public/img/icon/battery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/battery.svg -------------------------------------------------------------------------------- /public/img/icon/bell-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/bell-fill.svg -------------------------------------------------------------------------------- /public/img/icon/bell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/bell.svg -------------------------------------------------------------------------------- /public/img/icon/bookmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/bookmark.svg -------------------------------------------------------------------------------- /public/img/icon/bootstrap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/bootstrap.svg -------------------------------------------------------------------------------- /public/img/icon/bullseye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/bullseye.svg -------------------------------------------------------------------------------- /public/img/icon/calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/calendar.svg -------------------------------------------------------------------------------- /public/img/icon/camera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/camera.svg -------------------------------------------------------------------------------- /public/img/icon/chat-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/chat-fill.svg -------------------------------------------------------------------------------- /public/img/icon/chat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/chat.svg -------------------------------------------------------------------------------- /public/img/icon/check-box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/check-box.svg -------------------------------------------------------------------------------- /public/img/icon/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/check.svg -------------------------------------------------------------------------------- /public/img/icon/chevron-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/chevron-up.svg -------------------------------------------------------------------------------- /public/img/icon/circle-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/circle-fill.svg -------------------------------------------------------------------------------- /public/img/icon/circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/circle.svg -------------------------------------------------------------------------------- /public/img/icon/clock-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/clock-fill.svg -------------------------------------------------------------------------------- /public/img/icon/clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/clock.svg -------------------------------------------------------------------------------- /public/img/icon/cloud-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/cloud-fill.svg -------------------------------------------------------------------------------- /public/img/icon/cloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/cloud.svg -------------------------------------------------------------------------------- /public/img/icon/code-slash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/code-slash.svg -------------------------------------------------------------------------------- /public/img/icon/code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/code.svg -------------------------------------------------------------------------------- /public/img/icon/command.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/command.svg -------------------------------------------------------------------------------- /public/img/icon/compass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/compass.svg -------------------------------------------------------------------------------- /public/img/icon/credit-card.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/credit-card.svg -------------------------------------------------------------------------------- /public/img/icon/cursor-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/cursor-fill.svg -------------------------------------------------------------------------------- /public/img/icon/cursor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/cursor.svg -------------------------------------------------------------------------------- /public/img/icon/dash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/dash.svg -------------------------------------------------------------------------------- /public/img/icon/display.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/display.svg -------------------------------------------------------------------------------- /public/img/icon/document.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/document.svg -------------------------------------------------------------------------------- /public/img/icon/documents.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/documents.svg -------------------------------------------------------------------------------- /public/img/icon/dot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/dot.svg -------------------------------------------------------------------------------- /public/img/icon/envelope.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/envelope.svg -------------------------------------------------------------------------------- /public/img/icon/filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/filter.svg -------------------------------------------------------------------------------- /public/img/icon/flag-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/flag-fill.svg -------------------------------------------------------------------------------- /public/img/icon/flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/flag.svg -------------------------------------------------------------------------------- /public/img/icon/folder-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/folder-fill.svg -------------------------------------------------------------------------------- /public/img/icon/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/folder.svg -------------------------------------------------------------------------------- /public/img/icon/forward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/forward.svg -------------------------------------------------------------------------------- /public/img/icon/gear-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/gear-fill.svg -------------------------------------------------------------------------------- /public/img/icon/gear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/gear.svg -------------------------------------------------------------------------------- /public/img/icon/graph-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/graph-down.svg -------------------------------------------------------------------------------- /public/img/icon/graph-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/graph-up.svg -------------------------------------------------------------------------------- /public/img/icon/grid-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/grid-fill.svg -------------------------------------------------------------------------------- /public/img/icon/grid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/grid.svg -------------------------------------------------------------------------------- /public/img/icon/heart-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/heart-fill.svg -------------------------------------------------------------------------------- /public/img/icon/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/heart.svg -------------------------------------------------------------------------------- /public/img/icon/house-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/house-fill.svg -------------------------------------------------------------------------------- /public/img/icon/house.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/house.svg -------------------------------------------------------------------------------- /public/img/icon/image-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/image-fill.svg -------------------------------------------------------------------------------- /public/img/icon/image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/image.svg -------------------------------------------------------------------------------- /public/img/icon/inbox-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/inbox-fill.svg -------------------------------------------------------------------------------- /public/img/icon/inbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/inbox.svg -------------------------------------------------------------------------------- /public/img/icon/info-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/info-fill.svg -------------------------------------------------------------------------------- /public/img/icon/info-square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/info-square.svg -------------------------------------------------------------------------------- /public/img/icon/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/info.svg -------------------------------------------------------------------------------- /public/img/icon/justify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/justify.svg -------------------------------------------------------------------------------- /public/img/icon/kanban-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/kanban-fill.svg -------------------------------------------------------------------------------- /public/img/icon/kanban.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/kanban.svg -------------------------------------------------------------------------------- /public/img/icon/laptop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/laptop.svg -------------------------------------------------------------------------------- /public/img/icon/list-check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/list-check.svg -------------------------------------------------------------------------------- /public/img/icon/list-ol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/list-ol.svg -------------------------------------------------------------------------------- /public/img/icon/list-task.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/list-task.svg -------------------------------------------------------------------------------- /public/img/icon/list-ul.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/list-ul.svg -------------------------------------------------------------------------------- /public/img/icon/list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/list.svg -------------------------------------------------------------------------------- /public/img/icon/lock-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/lock-fill.svg -------------------------------------------------------------------------------- /public/img/icon/lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/lock.svg -------------------------------------------------------------------------------- /public/img/icon/option.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/option.svg -------------------------------------------------------------------------------- /public/img/icon/pause-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/pause-fill.svg -------------------------------------------------------------------------------- /public/img/icon/pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/pause.svg -------------------------------------------------------------------------------- /public/img/icon/people-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/people-fill.svg -------------------------------------------------------------------------------- /public/img/icon/people.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/people.svg -------------------------------------------------------------------------------- /public/img/icon/person-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/person-fill.svg -------------------------------------------------------------------------------- /public/img/icon/person.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/person.svg -------------------------------------------------------------------------------- /public/img/icon/phone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/phone.svg -------------------------------------------------------------------------------- /public/img/icon/play-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/play-fill.svg -------------------------------------------------------------------------------- /public/img/icon/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/play.svg -------------------------------------------------------------------------------- /public/img/icon/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/plus.svg -------------------------------------------------------------------------------- /public/img/icon/power.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/power.svg -------------------------------------------------------------------------------- /public/img/icon/question.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/question.svg -------------------------------------------------------------------------------- /public/img/icon/reply-all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/reply-all.svg -------------------------------------------------------------------------------- /public/img/icon/reply-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/reply-fill.svg -------------------------------------------------------------------------------- /public/img/icon/reply.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/reply.svg -------------------------------------------------------------------------------- /public/img/icon/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/search.svg -------------------------------------------------------------------------------- /public/img/icon/skip-end.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/skip-end.svg -------------------------------------------------------------------------------- /public/img/icon/skip-start.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/skip-start.svg -------------------------------------------------------------------------------- /public/img/icon/square-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/square-fill.svg -------------------------------------------------------------------------------- /public/img/icon/square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/square.svg -------------------------------------------------------------------------------- /public/img/icon/star-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/star-fill.svg -------------------------------------------------------------------------------- /public/img/icon/star-half.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/star-half.svg -------------------------------------------------------------------------------- /public/img/icon/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/star.svg -------------------------------------------------------------------------------- /public/img/icon/stop-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/stop-fill.svg -------------------------------------------------------------------------------- /public/img/icon/stop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/stop.svg -------------------------------------------------------------------------------- /public/img/icon/tablet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/tablet.svg -------------------------------------------------------------------------------- /public/img/icon/tag-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/tag-fill.svg -------------------------------------------------------------------------------- /public/img/icon/tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/tag.svg -------------------------------------------------------------------------------- /public/img/icon/terminal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/terminal.svg -------------------------------------------------------------------------------- /public/img/icon/text-center.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/text-center.svg -------------------------------------------------------------------------------- /public/img/icon/text-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/text-left.svg -------------------------------------------------------------------------------- /public/img/icon/text-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/text-right.svg -------------------------------------------------------------------------------- /public/img/icon/three-dots.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/three-dots.svg -------------------------------------------------------------------------------- /public/img/icon/toggle-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/toggle-off.svg -------------------------------------------------------------------------------- /public/img/icon/toggle-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/toggle-on.svg -------------------------------------------------------------------------------- /public/img/icon/trash-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/trash-fill.svg -------------------------------------------------------------------------------- /public/img/icon/trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/trash.svg -------------------------------------------------------------------------------- /public/img/icon/triangle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/triangle.svg -------------------------------------------------------------------------------- /public/img/icon/tv-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/tv-fill.svg -------------------------------------------------------------------------------- /public/img/icon/tv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/tv.svg -------------------------------------------------------------------------------- /public/img/icon/type-bold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/type-bold.svg -------------------------------------------------------------------------------- /public/img/icon/type-italic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/type-italic.svg -------------------------------------------------------------------------------- /public/img/icon/type.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/type.svg -------------------------------------------------------------------------------- /public/img/icon/unlock-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/unlock-fill.svg -------------------------------------------------------------------------------- /public/img/icon/unlock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/unlock.svg -------------------------------------------------------------------------------- /public/img/icon/volume-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/volume-down.svg -------------------------------------------------------------------------------- /public/img/icon/volume-mute.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/volume-mute.svg -------------------------------------------------------------------------------- /public/img/icon/volume-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/volume-up.svg -------------------------------------------------------------------------------- /public/img/icon/watch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/watch.svg -------------------------------------------------------------------------------- /public/img/icon/wifi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/wifi.svg -------------------------------------------------------------------------------- /public/img/icon/x-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/x-circle.svg -------------------------------------------------------------------------------- /public/img/icon/x-octagon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/x-octagon.svg -------------------------------------------------------------------------------- /public/img/icon/x-square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/x-square.svg -------------------------------------------------------------------------------- /public/img/icon/x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/icon/x.svg -------------------------------------------------------------------------------- /public/img/landing/ios_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/landing/ios_1.jpg -------------------------------------------------------------------------------- /public/img/landing/ios_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/landing/ios_2.jpg -------------------------------------------------------------------------------- /public/img/landing/ios_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/landing/ios_3.jpg -------------------------------------------------------------------------------- /public/img/landing/ios_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/landing/ios_4.jpg -------------------------------------------------------------------------------- /public/img/logo/pwa/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/logo/pwa/1024.png -------------------------------------------------------------------------------- /public/img/logo/pwa/114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/logo/pwa/114.png -------------------------------------------------------------------------------- /public/img/logo/pwa/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/logo/pwa/120.png -------------------------------------------------------------------------------- /public/img/logo/pwa/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/logo/pwa/128.png -------------------------------------------------------------------------------- /public/img/logo/pwa/144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/logo/pwa/144.png -------------------------------------------------------------------------------- /public/img/logo/pwa/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/logo/pwa/152.png -------------------------------------------------------------------------------- /public/img/logo/pwa/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/logo/pwa/180.png -------------------------------------------------------------------------------- /public/img/logo/pwa/192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/logo/pwa/192.png -------------------------------------------------------------------------------- /public/img/logo/pwa/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/logo/pwa/256.png -------------------------------------------------------------------------------- /public/img/logo/pwa/384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/logo/pwa/384.png -------------------------------------------------------------------------------- /public/img/logo/pwa/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/logo/pwa/48.png -------------------------------------------------------------------------------- /public/img/logo/pwa/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/logo/pwa/512.png -------------------------------------------------------------------------------- /public/img/logo/pwa/57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/logo/pwa/57.png -------------------------------------------------------------------------------- /public/img/logo/pwa/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/logo/pwa/60.png -------------------------------------------------------------------------------- /public/img/logo/pwa/72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/logo/pwa/72.png -------------------------------------------------------------------------------- /public/img/logo/pwa/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/logo/pwa/76.png -------------------------------------------------------------------------------- /public/img/logo/pwa/96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/logo/pwa/96.png -------------------------------------------------------------------------------- /public/img/sample-post.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/img/sample-post.jpeg -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/index.php -------------------------------------------------------------------------------- /public/js/account-import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/js/account-import.js -------------------------------------------------------------------------------- /public/js/activity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/js/activity.js -------------------------------------------------------------------------------- /public/js/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/js/admin.js -------------------------------------------------------------------------------- /public/js/admin.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/js/admin.js.LICENSE.txt -------------------------------------------------------------------------------- /public/js/admin_invite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/js/admin_invite.js -------------------------------------------------------------------------------- /public/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/js/app.js -------------------------------------------------------------------------------- /public/js/app.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/js/app.js.LICENSE.txt -------------------------------------------------------------------------------- /public/js/collectioncompose.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/js/collectioncompose.js -------------------------------------------------------------------------------- /public/js/collections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/js/collections.js -------------------------------------------------------------------------------- /public/js/components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/js/components.js -------------------------------------------------------------------------------- /public/js/compose-classic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/js/compose-classic.js -------------------------------------------------------------------------------- /public/js/compose.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/js/compose.js -------------------------------------------------------------------------------- /public/js/custom_filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/js/custom_filters.js -------------------------------------------------------------------------------- /public/js/developers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/js/developers.js -------------------------------------------------------------------------------- /public/js/direct.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/js/direct.js -------------------------------------------------------------------------------- /public/js/discover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/js/discover.js -------------------------------------------------------------------------------- /public/js/group-status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/js/group-status.js -------------------------------------------------------------------------------- /public/js/group-topic-feed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/js/group-topic-feed.js -------------------------------------------------------------------------------- /public/js/groups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/js/groups.js -------------------------------------------------------------------------------- /public/js/hashtag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/js/hashtag.js -------------------------------------------------------------------------------- /public/js/landing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/js/landing.js -------------------------------------------------------------------------------- /public/js/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/js/manifest.js -------------------------------------------------------------------------------- /public/js/portfolio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/js/portfolio.js -------------------------------------------------------------------------------- /public/js/profile-directory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/js/profile-directory.js -------------------------------------------------------------------------------- /public/js/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/js/profile.js -------------------------------------------------------------------------------- /public/js/remote_auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/js/remote_auth.js -------------------------------------------------------------------------------- /public/js/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/js/search.js -------------------------------------------------------------------------------- /public/js/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/js/settings.js -------------------------------------------------------------------------------- /public/js/spa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/js/spa.js -------------------------------------------------------------------------------- /public/js/spa.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/js/spa.js.LICENSE.txt -------------------------------------------------------------------------------- /public/js/status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/js/status.js -------------------------------------------------------------------------------- /public/js/stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/js/stories.js -------------------------------------------------------------------------------- /public/js/story-compose.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/js/story-compose.js -------------------------------------------------------------------------------- /public/js/timeline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/js/timeline.js -------------------------------------------------------------------------------- /public/js/vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/js/vendor.js -------------------------------------------------------------------------------- /public/js/vendor.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/js/vendor.js.LICENSE.txt -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/mix-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/mix-manifest.json -------------------------------------------------------------------------------- /public/offline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/offline.html -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/static/beep.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/static/beep.mp3 -------------------------------------------------------------------------------- /public/svg/403.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/svg/403.svg -------------------------------------------------------------------------------- /public/svg/404.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/svg/404.svg -------------------------------------------------------------------------------- /public/svg/500.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/svg/500.svg -------------------------------------------------------------------------------- /public/svg/503.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/svg/503.svg -------------------------------------------------------------------------------- /public/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/sw.js -------------------------------------------------------------------------------- /public/vendor/horizon/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /public/vendor/telescope/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/vendor/telescope/app.css -------------------------------------------------------------------------------- /public/vendor/telescope/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/public/vendor/telescope/app.js -------------------------------------------------------------------------------- /resources/assets/components/groups/partials/GroupEvents.vue: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/assets/components/groups/partials/GroupPolls.vue: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/assets/js/activity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/assets/js/activity.js -------------------------------------------------------------------------------- /resources/assets/js/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/assets/js/admin.js -------------------------------------------------------------------------------- /resources/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/assets/js/app.js -------------------------------------------------------------------------------- /resources/assets/js/compose.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/assets/js/compose.js -------------------------------------------------------------------------------- /resources/assets/js/direct.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/assets/js/direct.js -------------------------------------------------------------------------------- /resources/assets/js/discover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/assets/js/discover.js -------------------------------------------------------------------------------- /resources/assets/js/embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/assets/js/embed.js -------------------------------------------------------------------------------- /resources/assets/js/groups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/assets/js/groups.js -------------------------------------------------------------------------------- /resources/assets/js/hashtag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/assets/js/hashtag.js -------------------------------------------------------------------------------- /resources/assets/js/landing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/assets/js/landing.js -------------------------------------------------------------------------------- /resources/assets/js/loops.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/assets/js/loops.js -------------------------------------------------------------------------------- /resources/assets/js/micro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/assets/js/micro.js -------------------------------------------------------------------------------- /resources/assets/js/my2020.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/assets/js/my2020.js -------------------------------------------------------------------------------- /resources/assets/js/polyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/assets/js/polyfill.js -------------------------------------------------------------------------------- /resources/assets/js/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/assets/js/profile.js -------------------------------------------------------------------------------- /resources/assets/js/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/assets/js/search.js -------------------------------------------------------------------------------- /resources/assets/js/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/assets/js/settings.js -------------------------------------------------------------------------------- /resources/assets/js/spa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/assets/js/spa.js -------------------------------------------------------------------------------- /resources/assets/js/status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/assets/js/status.js -------------------------------------------------------------------------------- /resources/assets/js/stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/assets/js/stories.js -------------------------------------------------------------------------------- /resources/assets/js/timeline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/assets/js/timeline.js -------------------------------------------------------------------------------- /resources/assets/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/assets/sass/app.scss -------------------------------------------------------------------------------- /resources/assets/sass/dark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/assets/sass/dark.scss -------------------------------------------------------------------------------- /resources/assets/sass/fonts.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/assets/sass/spa.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/assets/sass/spa.scss -------------------------------------------------------------------------------- /resources/lang/af/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/af/web.php -------------------------------------------------------------------------------- /resources/lang/ar/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/ar/auth.php -------------------------------------------------------------------------------- /resources/lang/ar/exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/ar/exception.php -------------------------------------------------------------------------------- /resources/lang/ar/navmenu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/ar/navmenu.php -------------------------------------------------------------------------------- /resources/lang/ar/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/ar/passwords.php -------------------------------------------------------------------------------- /resources/lang/ar/profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/ar/profile.php -------------------------------------------------------------------------------- /resources/lang/ar/site.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/ar/site.php -------------------------------------------------------------------------------- /resources/lang/ar/timeline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/ar/timeline.php -------------------------------------------------------------------------------- /resources/lang/ar/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/ar/web.php -------------------------------------------------------------------------------- /resources/lang/bn/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/bn/web.php -------------------------------------------------------------------------------- /resources/lang/bs/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/bs/web.php -------------------------------------------------------------------------------- /resources/lang/ca/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/ca/auth.php -------------------------------------------------------------------------------- /resources/lang/ca/exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/ca/exception.php -------------------------------------------------------------------------------- /resources/lang/ca/navmenu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/ca/navmenu.php -------------------------------------------------------------------------------- /resources/lang/ca/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/ca/passwords.php -------------------------------------------------------------------------------- /resources/lang/ca/profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/ca/profile.php -------------------------------------------------------------------------------- /resources/lang/ca/site.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/ca/site.php -------------------------------------------------------------------------------- /resources/lang/ca/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/ca/web.php -------------------------------------------------------------------------------- /resources/lang/cs/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/cs/auth.php -------------------------------------------------------------------------------- /resources/lang/cs/exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/cs/exception.php -------------------------------------------------------------------------------- /resources/lang/cs/navmenu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/cs/navmenu.php -------------------------------------------------------------------------------- /resources/lang/cs/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/cs/passwords.php -------------------------------------------------------------------------------- /resources/lang/cs/profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/cs/profile.php -------------------------------------------------------------------------------- /resources/lang/cs/site.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/cs/site.php -------------------------------------------------------------------------------- /resources/lang/cs/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/cs/web.php -------------------------------------------------------------------------------- /resources/lang/cy/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/cy/auth.php -------------------------------------------------------------------------------- /resources/lang/cy/navmenu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/cy/navmenu.php -------------------------------------------------------------------------------- /resources/lang/cy/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/cy/passwords.php -------------------------------------------------------------------------------- /resources/lang/cy/profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/cy/profile.php -------------------------------------------------------------------------------- /resources/lang/cy/site.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/cy/site.php -------------------------------------------------------------------------------- /resources/lang/cy/timeline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/cy/timeline.php -------------------------------------------------------------------------------- /resources/lang/cy/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/cy/web.php -------------------------------------------------------------------------------- /resources/lang/da/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/da/auth.php -------------------------------------------------------------------------------- /resources/lang/da/navmenu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/da/navmenu.php -------------------------------------------------------------------------------- /resources/lang/da/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/da/passwords.php -------------------------------------------------------------------------------- /resources/lang/da/profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/da/profile.php -------------------------------------------------------------------------------- /resources/lang/da/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/da/web.php -------------------------------------------------------------------------------- /resources/lang/de/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/de/auth.php -------------------------------------------------------------------------------- /resources/lang/de/exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/de/exception.php -------------------------------------------------------------------------------- /resources/lang/de/navmenu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/de/navmenu.php -------------------------------------------------------------------------------- /resources/lang/de/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/de/passwords.php -------------------------------------------------------------------------------- /resources/lang/de/profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/de/profile.php -------------------------------------------------------------------------------- /resources/lang/de/settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/de/settings.php -------------------------------------------------------------------------------- /resources/lang/de/site.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/de/site.php -------------------------------------------------------------------------------- /resources/lang/de/timeline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/de/timeline.php -------------------------------------------------------------------------------- /resources/lang/de/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/de/web.php -------------------------------------------------------------------------------- /resources/lang/el/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/el/auth.php -------------------------------------------------------------------------------- /resources/lang/el/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/el/passwords.php -------------------------------------------------------------------------------- /resources/lang/el/profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/el/profile.php -------------------------------------------------------------------------------- /resources/lang/el/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/el/web.php -------------------------------------------------------------------------------- /resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/en/auth.php -------------------------------------------------------------------------------- /resources/lang/en/exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/en/exception.php -------------------------------------------------------------------------------- /resources/lang/en/navmenu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/en/navmenu.php -------------------------------------------------------------------------------- /resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /resources/lang/en/profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/en/profile.php -------------------------------------------------------------------------------- /resources/lang/en/settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/en/settings.php -------------------------------------------------------------------------------- /resources/lang/en/site.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/en/site.php -------------------------------------------------------------------------------- /resources/lang/en/timeline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/en/timeline.php -------------------------------------------------------------------------------- /resources/lang/en/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/en/web.php -------------------------------------------------------------------------------- /resources/lang/eo/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/eo/auth.php -------------------------------------------------------------------------------- /resources/lang/eo/exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/eo/exception.php -------------------------------------------------------------------------------- /resources/lang/eo/navmenu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/eo/navmenu.php -------------------------------------------------------------------------------- /resources/lang/eo/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/eo/passwords.php -------------------------------------------------------------------------------- /resources/lang/eo/profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/eo/profile.php -------------------------------------------------------------------------------- /resources/lang/eo/site.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/eo/site.php -------------------------------------------------------------------------------- /resources/lang/eo/timeline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/eo/timeline.php -------------------------------------------------------------------------------- /resources/lang/eo/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/eo/web.php -------------------------------------------------------------------------------- /resources/lang/es/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/es/auth.php -------------------------------------------------------------------------------- /resources/lang/es/exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/es/exception.php -------------------------------------------------------------------------------- /resources/lang/es/navmenu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/es/navmenu.php -------------------------------------------------------------------------------- /resources/lang/es/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/es/passwords.php -------------------------------------------------------------------------------- /resources/lang/es/profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/es/profile.php -------------------------------------------------------------------------------- /resources/lang/es/settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/es/settings.php -------------------------------------------------------------------------------- /resources/lang/es/site.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/es/site.php -------------------------------------------------------------------------------- /resources/lang/es/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/es/web.php -------------------------------------------------------------------------------- /resources/lang/eu/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/eu/auth.php -------------------------------------------------------------------------------- /resources/lang/eu/navmenu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/eu/navmenu.php -------------------------------------------------------------------------------- /resources/lang/eu/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/eu/passwords.php -------------------------------------------------------------------------------- /resources/lang/eu/profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/eu/profile.php -------------------------------------------------------------------------------- /resources/lang/eu/site.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/eu/site.php -------------------------------------------------------------------------------- /resources/lang/eu/timeline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/eu/timeline.php -------------------------------------------------------------------------------- /resources/lang/eu/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/eu/web.php -------------------------------------------------------------------------------- /resources/lang/fa/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/fa/auth.php -------------------------------------------------------------------------------- /resources/lang/fa/exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/fa/exception.php -------------------------------------------------------------------------------- /resources/lang/fa/navmenu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/fa/navmenu.php -------------------------------------------------------------------------------- /resources/lang/fa/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/fa/passwords.php -------------------------------------------------------------------------------- /resources/lang/fa/profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/fa/profile.php -------------------------------------------------------------------------------- /resources/lang/fa/site.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/fa/site.php -------------------------------------------------------------------------------- /resources/lang/fa/timeline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/fa/timeline.php -------------------------------------------------------------------------------- /resources/lang/fa/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/fa/web.php -------------------------------------------------------------------------------- /resources/lang/fi/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/fi/auth.php -------------------------------------------------------------------------------- /resources/lang/fi/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/fi/passwords.php -------------------------------------------------------------------------------- /resources/lang/fi/profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/fi/profile.php -------------------------------------------------------------------------------- /resources/lang/fi/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/fi/web.php -------------------------------------------------------------------------------- /resources/lang/fr/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/fr/auth.php -------------------------------------------------------------------------------- /resources/lang/fr/exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/fr/exception.php -------------------------------------------------------------------------------- /resources/lang/fr/navmenu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/fr/navmenu.php -------------------------------------------------------------------------------- /resources/lang/fr/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/fr/passwords.php -------------------------------------------------------------------------------- /resources/lang/fr/profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/fr/profile.php -------------------------------------------------------------------------------- /resources/lang/fr/site.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/fr/site.php -------------------------------------------------------------------------------- /resources/lang/fr/timeline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/fr/timeline.php -------------------------------------------------------------------------------- /resources/lang/fr/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/fr/web.php -------------------------------------------------------------------------------- /resources/lang/gd/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/gd/web.php -------------------------------------------------------------------------------- /resources/lang/gl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/gl/README.md -------------------------------------------------------------------------------- /resources/lang/gl/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/gl/auth.php -------------------------------------------------------------------------------- /resources/lang/gl/exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/gl/exception.php -------------------------------------------------------------------------------- /resources/lang/gl/navmenu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/gl/navmenu.php -------------------------------------------------------------------------------- /resources/lang/gl/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/gl/passwords.php -------------------------------------------------------------------------------- /resources/lang/gl/profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/gl/profile.php -------------------------------------------------------------------------------- /resources/lang/gl/site.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/gl/site.php -------------------------------------------------------------------------------- /resources/lang/gl/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/gl/web.php -------------------------------------------------------------------------------- /resources/lang/he/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/he/auth.php -------------------------------------------------------------------------------- /resources/lang/he/navmenu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/he/navmenu.php -------------------------------------------------------------------------------- /resources/lang/he/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/he/passwords.php -------------------------------------------------------------------------------- /resources/lang/he/profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/he/profile.php -------------------------------------------------------------------------------- /resources/lang/he/site.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/he/site.php -------------------------------------------------------------------------------- /resources/lang/he/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/he/web.php -------------------------------------------------------------------------------- /resources/lang/hi/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/hi/web.php -------------------------------------------------------------------------------- /resources/lang/hr/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/hr/web.php -------------------------------------------------------------------------------- /resources/lang/hu/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/hu/web.php -------------------------------------------------------------------------------- /resources/lang/id/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/id/auth.php -------------------------------------------------------------------------------- /resources/lang/id/navmenu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/id/navmenu.php -------------------------------------------------------------------------------- /resources/lang/id/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/id/passwords.php -------------------------------------------------------------------------------- /resources/lang/id/profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/id/profile.php -------------------------------------------------------------------------------- /resources/lang/id/site.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/id/site.php -------------------------------------------------------------------------------- /resources/lang/id/timeline.php: -------------------------------------------------------------------------------- 1 | 'Linimasa kamu kosong.', 4 | ]; 5 | -------------------------------------------------------------------------------- /resources/lang/id/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/id/web.php -------------------------------------------------------------------------------- /resources/lang/it/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/it/auth.php -------------------------------------------------------------------------------- /resources/lang/it/exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/it/exception.php -------------------------------------------------------------------------------- /resources/lang/it/navmenu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/it/navmenu.php -------------------------------------------------------------------------------- /resources/lang/it/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/it/passwords.php -------------------------------------------------------------------------------- /resources/lang/it/profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/it/profile.php -------------------------------------------------------------------------------- /resources/lang/it/site.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/it/site.php -------------------------------------------------------------------------------- /resources/lang/it/timeline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/it/timeline.php -------------------------------------------------------------------------------- /resources/lang/it/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/it/web.php -------------------------------------------------------------------------------- /resources/lang/ja/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/ja/auth.php -------------------------------------------------------------------------------- /resources/lang/ja/navmenu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/ja/navmenu.php -------------------------------------------------------------------------------- /resources/lang/ja/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/ja/passwords.php -------------------------------------------------------------------------------- /resources/lang/ja/profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/ja/profile.php -------------------------------------------------------------------------------- /resources/lang/ja/site.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/ja/site.php -------------------------------------------------------------------------------- /resources/lang/ja/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/ja/web.php -------------------------------------------------------------------------------- /resources/lang/ko/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/ko/web.php -------------------------------------------------------------------------------- /resources/lang/me/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/me/web.php -------------------------------------------------------------------------------- /resources/lang/mk/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/mk/web.php -------------------------------------------------------------------------------- /resources/lang/ms/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/ms/auth.php -------------------------------------------------------------------------------- /resources/lang/ms/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/ms/passwords.php -------------------------------------------------------------------------------- /resources/lang/ms/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/ms/web.php -------------------------------------------------------------------------------- /resources/lang/nl/site.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/nl/site.php -------------------------------------------------------------------------------- /resources/lang/nl/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/nl/web.php -------------------------------------------------------------------------------- /resources/lang/no/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/no/web.php -------------------------------------------------------------------------------- /resources/lang/oc/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/oc/auth.php -------------------------------------------------------------------------------- /resources/lang/oc/navmenu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/oc/navmenu.php -------------------------------------------------------------------------------- /resources/lang/oc/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/oc/passwords.php -------------------------------------------------------------------------------- /resources/lang/oc/profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/oc/profile.php -------------------------------------------------------------------------------- /resources/lang/oc/site.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/oc/site.php -------------------------------------------------------------------------------- /resources/lang/oc/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/oc/web.php -------------------------------------------------------------------------------- /resources/lang/pl/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/pl/auth.php -------------------------------------------------------------------------------- /resources/lang/pl/exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/pl/exception.php -------------------------------------------------------------------------------- /resources/lang/pl/navmenu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/pl/navmenu.php -------------------------------------------------------------------------------- /resources/lang/pl/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/pl/passwords.php -------------------------------------------------------------------------------- /resources/lang/pl/profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/pl/profile.php -------------------------------------------------------------------------------- /resources/lang/pl/site.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/pl/site.php -------------------------------------------------------------------------------- /resources/lang/pl/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/pl/web.php -------------------------------------------------------------------------------- /resources/lang/pt/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/pt/auth.php -------------------------------------------------------------------------------- /resources/lang/pt/exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/pt/exception.php -------------------------------------------------------------------------------- /resources/lang/pt/navmenu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/pt/navmenu.php -------------------------------------------------------------------------------- /resources/lang/pt/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/pt/passwords.php -------------------------------------------------------------------------------- /resources/lang/pt/profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/pt/profile.php -------------------------------------------------------------------------------- /resources/lang/pt/settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/pt/settings.php -------------------------------------------------------------------------------- /resources/lang/pt/site.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/pt/site.php -------------------------------------------------------------------------------- /resources/lang/pt/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/pt/web.php -------------------------------------------------------------------------------- /resources/lang/ro/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/ro/web.php -------------------------------------------------------------------------------- /resources/lang/ru/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/ru/auth.php -------------------------------------------------------------------------------- /resources/lang/ru/exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/ru/exception.php -------------------------------------------------------------------------------- /resources/lang/ru/navmenu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/ru/navmenu.php -------------------------------------------------------------------------------- /resources/lang/ru/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/ru/passwords.php -------------------------------------------------------------------------------- /resources/lang/ru/profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/ru/profile.php -------------------------------------------------------------------------------- /resources/lang/ru/site.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/ru/site.php -------------------------------------------------------------------------------- /resources/lang/ru/timeline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/ru/timeline.php -------------------------------------------------------------------------------- /resources/lang/ru/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/ru/web.php -------------------------------------------------------------------------------- /resources/lang/sk/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/sk/web.php -------------------------------------------------------------------------------- /resources/lang/sr/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/sr/web.php -------------------------------------------------------------------------------- /resources/lang/sv/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/sv/auth.php -------------------------------------------------------------------------------- /resources/lang/sv/navmenu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/sv/navmenu.php -------------------------------------------------------------------------------- /resources/lang/sv/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/sv/passwords.php -------------------------------------------------------------------------------- /resources/lang/sv/profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/sv/profile.php -------------------------------------------------------------------------------- /resources/lang/sv/site.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/sv/site.php -------------------------------------------------------------------------------- /resources/lang/sv/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/sv/web.php -------------------------------------------------------------------------------- /resources/lang/th/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/th/auth.php -------------------------------------------------------------------------------- /resources/lang/th/exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/th/exception.php -------------------------------------------------------------------------------- /resources/lang/th/navmenu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/th/navmenu.php -------------------------------------------------------------------------------- /resources/lang/th/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/th/passwords.php -------------------------------------------------------------------------------- /resources/lang/th/profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/th/profile.php -------------------------------------------------------------------------------- /resources/lang/th/site.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/th/site.php -------------------------------------------------------------------------------- /resources/lang/th/timeline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/th/timeline.php -------------------------------------------------------------------------------- /resources/lang/th/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/th/web.php -------------------------------------------------------------------------------- /resources/lang/tr/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/tr/auth.php -------------------------------------------------------------------------------- /resources/lang/tr/navmenu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/tr/navmenu.php -------------------------------------------------------------------------------- /resources/lang/tr/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/tr/passwords.php -------------------------------------------------------------------------------- /resources/lang/tr/profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/tr/profile.php -------------------------------------------------------------------------------- /resources/lang/tr/settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/tr/settings.php -------------------------------------------------------------------------------- /resources/lang/tr/site.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/tr/site.php -------------------------------------------------------------------------------- /resources/lang/tr/timeline.php: -------------------------------------------------------------------------------- 1 | 'Akışın boş.', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/tr/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/tr/web.php -------------------------------------------------------------------------------- /resources/lang/uk/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/uk/auth.php -------------------------------------------------------------------------------- /resources/lang/uk/exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/uk/exception.php -------------------------------------------------------------------------------- /resources/lang/uk/navmenu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/uk/navmenu.php -------------------------------------------------------------------------------- /resources/lang/uk/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/uk/passwords.php -------------------------------------------------------------------------------- /resources/lang/uk/profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/uk/profile.php -------------------------------------------------------------------------------- /resources/lang/uk/site.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/uk/site.php -------------------------------------------------------------------------------- /resources/lang/uk/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/uk/web.php -------------------------------------------------------------------------------- /resources/lang/vi/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/vi/web.php -------------------------------------------------------------------------------- /resources/lang/zh-cn/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/zh-cn/auth.php -------------------------------------------------------------------------------- /resources/lang/zh-cn/site.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/zh-cn/site.php -------------------------------------------------------------------------------- /resources/lang/zh-cn/timeline.php: -------------------------------------------------------------------------------- 1 | '您的时间线是空的', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/zh-cn/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/zh-cn/web.php -------------------------------------------------------------------------------- /resources/lang/zh-tw/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/zh-tw/auth.php -------------------------------------------------------------------------------- /resources/lang/zh-tw/site.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/zh-tw/site.php -------------------------------------------------------------------------------- /resources/lang/zh-tw/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/zh-tw/web.php -------------------------------------------------------------------------------- /resources/lang/zh/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/lang/zh/web.php -------------------------------------------------------------------------------- /resources/views/admin/apps/show.blade.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/views/admin/hashtags/show.blade.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/views/home.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/resources/views/home.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/text/footer.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/text/panel.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/text/promotion.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/text/subcopy.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/text/table.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web-admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/routes/web-admin.php -------------------------------------------------------------------------------- /routes/web-api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/routes/web-api.php -------------------------------------------------------------------------------- /routes/web-portfolio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/routes/web-portfolio.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/routes/web.php -------------------------------------------------------------------------------- /scripts/artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/scripts/artisan -------------------------------------------------------------------------------- /scripts/check-requirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/scripts/check-requirements -------------------------------------------------------------------------------- /scripts/clear-cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/scripts/clear-cache -------------------------------------------------------------------------------- /scripts/debug-info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/scripts/debug-info -------------------------------------------------------------------------------- /scripts/dottie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/scripts/dottie -------------------------------------------------------------------------------- /scripts/feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/scripts/feature -------------------------------------------------------------------------------- /scripts/gum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/scripts/gum -------------------------------------------------------------------------------- /scripts/lib/shared.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/scripts/lib/shared.sh -------------------------------------------------------------------------------- /scripts/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/scripts/setup -------------------------------------------------------------------------------- /scripts/shell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/scripts/shell -------------------------------------------------------------------------------- /scripts/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/scripts/update -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/server.php -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/shell.nix -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/storage/app/.gitignore -------------------------------------------------------------------------------- /storage/app/backups/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/app/bouncer/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !all.json 4 | -------------------------------------------------------------------------------- /storage/app/bouncer/all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/storage/app/bouncer/all.json -------------------------------------------------------------------------------- /storage/app/cities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/storage/app/cities.json -------------------------------------------------------------------------------- /storage/app/nlp/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/storage/app/public/.gitignore -------------------------------------------------------------------------------- /storage/app/public/emoji/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !missing.png 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/headers/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !missing.png 4 | !default.jpg 5 | -------------------------------------------------------------------------------- /storage/app/public/live-hls/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/app/public/m/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /storage/app/public/textimg/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !bg_1.jpg 4 | -------------------------------------------------------------------------------- /storage/app/remcache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/debugbar/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/storage/framework/.gitignore -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore -------------------------------------------------------------------------------- /storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/purify/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/LoginTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/tests/Feature/LoginTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/BearcapTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/tests/Unit/BearcapTest.php -------------------------------------------------------------------------------- /tests/Unit/CryptoTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/tests/Unit/CryptoTest.php -------------------------------------------------------------------------------- /tests/Unit/PurifierTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/tests/Unit/PurifierTest.php -------------------------------------------------------------------------------- /tests/Unit/WebfingerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/tests/Unit/WebfingerTest.php -------------------------------------------------------------------------------- /tests/database.sqlite: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfed-glitch/pixelfed/HEAD/webpack.mix.js --------------------------------------------------------------------------------