├── .dockerignore ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── discussion---request-for-commentary--rfc-.md │ └── feature_request.md └── workflows │ ├── build.yml │ ├── frontend-lint.yml │ └── golangci-lint.yml ├── .gitignore ├── .golangci.yml ├── CLAUDE.md ├── LICENSE ├── Makefile ├── README.md ├── cmd └── stash-box │ ├── init.go │ └── main.go ├── docker ├── build │ └── x86_64 │ │ ├── Dockerfile │ │ ├── db │ │ └── initdb.sh │ │ └── docker-compose.yml ├── ci │ └── x86_64 │ │ ├── Dockerfile │ │ └── docker_push.sh └── production │ ├── docker-compose.yml │ └── postgres │ └── Dockerfile ├── frontend ├── .env.development ├── .env.development.local.shadow ├── .gitattributes ├── .gitignore ├── .nvmrc ├── README.md ├── biome.json ├── codegen.yml ├── embed.go ├── index.html ├── package.json ├── pnpm-lock.yaml ├── src │ ├── App.scss │ ├── App.tsx │ ├── Login.tsx │ ├── Main.tsx │ ├── components │ │ ├── changeRow │ │ │ ├── ChangeRow.tsx │ │ │ └── index.ts │ │ ├── checkboxSelect │ │ │ ├── CheckboxSelect.tsx │ │ │ ├── index.ts │ │ │ └── styles.scss │ │ ├── deleteButton │ │ │ ├── DeleteButton.tsx │ │ │ └── index.ts │ │ ├── editCard │ │ │ ├── AddComment.tsx │ │ │ ├── EditCard.tsx │ │ │ ├── EditComment.tsx │ │ │ ├── EditExpiration.tsx │ │ │ ├── EditHeader.tsx │ │ │ ├── EditStatus.tsx │ │ │ ├── ModifyEdit.tsx │ │ │ ├── VoteBar.tsx │ │ │ ├── Votes.tsx │ │ │ ├── index.ts │ │ │ ├── renderEntity.tsx │ │ │ └── styles.scss │ │ ├── editImages │ │ │ ├── editImages.tsx │ │ │ ├── index.ts │ │ │ └── styles.scss │ │ ├── form │ │ │ ├── BodyModification.tsx │ │ │ ├── EditNote.tsx │ │ │ ├── Image.tsx │ │ │ ├── NavButtons.tsx │ │ │ ├── NoteInput.tsx │ │ │ ├── SubmitButtons.tsx │ │ │ ├── index.ts │ │ │ └── styles.scss │ │ ├── fragments │ │ │ ├── ErrorMessage.tsx │ │ │ ├── Favorite.tsx │ │ │ ├── GenderIcon.tsx │ │ │ ├── Help.tsx │ │ │ ├── Icon.tsx │ │ │ ├── LoadingIndicator.tsx │ │ │ ├── PerformerName.tsx │ │ │ ├── SearchHint.tsx │ │ │ ├── SiteLink.tsx │ │ │ ├── TagLink.tsx │ │ │ ├── Thumbnail.tsx │ │ │ ├── Tooltip.tsx │ │ │ ├── index.ts │ │ │ └── styles.scss │ │ ├── image │ │ │ ├── Image.tsx │ │ │ ├── index.ts │ │ │ └── styles.scss │ │ ├── imageCarousel │ │ │ ├── ImageCarousel.tsx │ │ │ ├── index.ts │ │ │ └── styles.scss │ │ ├── imageChangeRow │ │ │ ├── ImageChangeRow.tsx │ │ │ ├── index.ts │ │ │ └── styles.scss │ │ ├── linkedChangeRow │ │ │ ├── LinkedChangeRow.tsx │ │ │ └── index.ts │ │ ├── list │ │ │ ├── EditList.tsx │ │ │ ├── List.tsx │ │ │ ├── SceneList.tsx │ │ │ ├── TagList.tsx │ │ │ ├── URLList.tsx │ │ │ ├── index.ts │ │ │ └── styles.scss │ │ ├── listChangeRow │ │ │ ├── ListChangeRow.tsx │ │ │ └── index.ts │ │ ├── modal │ │ │ ├── Modal.tsx │ │ │ └── index.ts │ │ ├── multiSelect │ │ │ ├── MultiSelect.tsx │ │ │ ├── index.ts │ │ │ └── styles.scss │ │ ├── pagination │ │ │ ├── Pagination.tsx │ │ │ └── index.ts │ │ ├── performerCard │ │ │ ├── PerformerCard.tsx │ │ │ ├── index.ts │ │ │ └── styles.scss │ │ ├── performerSelect │ │ │ ├── PerformerSelect.tsx │ │ │ ├── index.ts │ │ │ └── styles.scss │ │ ├── sceneCard │ │ │ ├── SceneCard.tsx │ │ │ ├── index.ts │ │ │ └── styles.scss │ │ ├── searchField │ │ │ ├── SearchField.tsx │ │ │ ├── index.ts │ │ │ └── styles.scss │ │ ├── studioSelect │ │ │ ├── StudioSelect.tsx │ │ │ ├── index.ts │ │ │ └── styles.scss │ │ ├── tagFilter │ │ │ ├── TagFilter.tsx │ │ │ ├── index.ts │ │ │ └── styles.scss │ │ ├── tagSelect │ │ │ ├── TagSelect.tsx │ │ │ ├── index.ts │ │ │ └── styles.scss │ │ ├── title │ │ │ ├── Title.tsx │ │ │ └── index.ts │ │ ├── urlChangeRow │ │ │ ├── URLChangeRow.tsx │ │ │ └── index.ts │ │ └── urlInput │ │ │ ├── index.ts │ │ │ ├── styles.scss │ │ │ └── urlInput.tsx │ ├── constants │ │ ├── enums.ts │ │ ├── index.ts │ │ └── route.ts │ ├── context.tsx │ ├── graphql │ │ ├── fragments │ │ │ ├── CommentFragment.gql │ │ │ ├── EditFragment.gql │ │ │ ├── FingerprintFragment.gql │ │ │ ├── ImageFragment.gql │ │ │ ├── PerformerFragment.gql │ │ │ ├── QuerySceneFragment.gql │ │ │ ├── SceneFragment.gql │ │ │ ├── ScenePerformerFragment.gql │ │ │ ├── SearchPerformerFragment.gql │ │ │ ├── StudioFragment.gql │ │ │ ├── TagFragment.gql │ │ │ └── URLFragment.gql │ │ ├── index.ts │ │ ├── mutations │ │ │ ├── ActivateNewUser.gql │ │ │ ├── AddImage.gql │ │ │ ├── AddScene.gql │ │ │ ├── AddSite.gql │ │ │ ├── AddStudio.gql │ │ │ ├── AddTagCategory.gql │ │ │ ├── AddUser.gql │ │ │ ├── ApplyEdit.gql │ │ │ ├── CancelEdit.gql │ │ │ ├── ChangePassword.gql │ │ │ ├── ConfirmChangeEmail.gql │ │ │ ├── DeleteDraft.gql │ │ │ ├── DeleteScene.gql │ │ │ ├── DeleteSite.gql │ │ │ ├── DeleteStudio.gql │ │ │ ├── DeleteTagCategory.gql │ │ │ ├── DeleteUser.gql │ │ │ ├── EditComment.gql │ │ │ ├── FavoritePerformer.gql │ │ │ ├── FavoriteStudio.gql │ │ │ ├── GenerateInviteCode.gql │ │ │ ├── GrantInvite.gql │ │ │ ├── MarkNotificationRead.gql │ │ │ ├── MarkNotificationsRead.gql │ │ │ ├── NewUser.gql │ │ │ ├── PerformerEdit.gql │ │ │ ├── PerformerEditUpdate.gql │ │ │ ├── RegenerateAPIKey.gql │ │ │ ├── RequestChangeEmail.gql │ │ │ ├── RescindInviteCode.gql │ │ │ ├── ResetPassword.gql │ │ │ ├── RevokeInvite.gql │ │ │ ├── SceneEdit.gql │ │ │ ├── SceneEditUpdate.gql │ │ │ ├── StudioEdit.gql │ │ │ ├── StudioEditUpdate.gql │ │ │ ├── TagEdit.gql │ │ │ ├── TagEditUpdate.gql │ │ │ ├── UnmatchFingerprint.gql │ │ │ ├── UpdateNotificationSubscriptions.gql │ │ │ ├── UpdateScene.gql │ │ │ ├── UpdateSite.gql │ │ │ ├── UpdateStudio.gql │ │ │ ├── UpdateTagCategory.gql │ │ │ ├── UpdateUser.gql │ │ │ ├── ValidateChangeEmail.gql │ │ │ ├── Vote.gql │ │ │ └── index.ts │ │ ├── queries │ │ │ ├── Categories.gql │ │ │ ├── Category.gql │ │ │ ├── Config.gql │ │ │ ├── Draft.gql │ │ │ ├── Drafts.gql │ │ │ ├── Edit.gql │ │ │ ├── EditUpdate.gql │ │ │ ├── Edits.gql │ │ │ ├── FullPerformer.gql │ │ │ ├── Me.gql │ │ │ ├── PendingEditsCount.gql │ │ │ ├── Performer.gql │ │ │ ├── Performers.gql │ │ │ ├── PublicUser.gql │ │ │ ├── QueryExistingPerformer.gql │ │ │ ├── QueryExistingScene.gql │ │ │ ├── QueryNotifications.gql │ │ │ ├── Scene.gql │ │ │ ├── ScenePairings.gql │ │ │ ├── Scenes.gql │ │ │ ├── ScenesWithFingerprints.gql │ │ │ ├── ScenesWithoutCount.gql │ │ │ ├── SearchAll.gql │ │ │ ├── SearchPerformers.gql │ │ │ ├── SearchTags.gql │ │ │ ├── Site.gql │ │ │ ├── Sites.gql │ │ │ ├── Studio.gql │ │ │ ├── StudioPerformers.gql │ │ │ ├── Studios.gql │ │ │ ├── Tag.gql │ │ │ ├── Tags.gql │ │ │ ├── UnreadNotificationCount.gql │ │ │ ├── User.gql │ │ │ ├── Users.gql │ │ │ ├── Version.gql │ │ │ └── index.ts │ │ ├── scalars.d.ts │ │ └── types.ts │ ├── hooks │ │ ├── index.ts │ │ ├── toast.scss │ │ ├── useAuth.tsx │ │ ├── useBeforeUnload.ts │ │ ├── useCurrentUser.tsx │ │ ├── useEditFilter.tsx │ │ ├── usePagination.ts │ │ ├── useQueryParams.ts │ │ └── useToast.tsx │ ├── index.tsx │ ├── modules.d.ts │ ├── pages │ │ ├── activateUser │ │ │ ├── ActivateUser.tsx │ │ │ └── index.ts │ │ ├── categories │ │ │ ├── Categories.tsx │ │ │ ├── Category.tsx │ │ │ ├── CategoryAdd.tsx │ │ │ ├── CategoryEdit.tsx │ │ │ ├── categoryForm │ │ │ │ ├── CategoryForm.tsx │ │ │ │ └── index.ts │ │ │ └── index.tsx │ │ ├── drafts │ │ │ ├── Draft.tsx │ │ │ ├── Drafts.tsx │ │ │ ├── PerformerDraft.tsx │ │ │ ├── SceneDraft.tsx │ │ │ ├── index.tsx │ │ │ └── parse.ts │ │ ├── edits │ │ │ ├── Edit.tsx │ │ │ ├── EditUpdate.tsx │ │ │ ├── Edits.tsx │ │ │ ├── components │ │ │ │ └── UpdateCount.tsx │ │ │ └── index.tsx │ │ ├── forgotPassword │ │ │ ├── ForgotPassword.tsx │ │ │ └── index.ts │ │ ├── home │ │ │ ├── Home.tsx │ │ │ ├── index.ts │ │ │ └── styles.scss │ │ ├── index.tsx │ │ ├── notifications │ │ │ ├── CommentNotification.tsx │ │ │ ├── EditNotification.tsx │ │ │ ├── Notification.tsx │ │ │ ├── Notifications.tsx │ │ │ ├── index.ts │ │ │ ├── sceneNotification.tsx │ │ │ ├── styles.scss │ │ │ └── types.ts │ │ ├── performers │ │ │ ├── Performer.tsx │ │ │ ├── PerformerAdd.tsx │ │ │ ├── PerformerDelete.tsx │ │ │ ├── PerformerEdit.tsx │ │ │ ├── PerformerEditUpdate.tsx │ │ │ ├── PerformerMerge.tsx │ │ │ ├── Performers.tsx │ │ │ ├── components │ │ │ │ ├── index.ts │ │ │ │ ├── performerInfo.tsx │ │ │ │ └── scenePairings.tsx │ │ │ ├── index.tsx │ │ │ ├── performerForm │ │ │ │ ├── ExistingPerformerAlert.tsx │ │ │ │ ├── PerformerForm.tsx │ │ │ │ ├── diff.ts │ │ │ │ ├── index.ts │ │ │ │ ├── schema.ts │ │ │ │ └── types.ts │ │ │ └── styles.scss │ │ ├── registerUser │ │ │ ├── Register.tsx │ │ │ └── index.ts │ │ ├── resetPassword │ │ │ ├── ResetPassword.tsx │ │ │ └── index.ts │ │ ├── scenes │ │ │ ├── Scene.tsx │ │ │ ├── SceneAdd.tsx │ │ │ ├── SceneDelete.tsx │ │ │ ├── SceneEdit.tsx │ │ │ ├── SceneEditUpdate.tsx │ │ │ ├── Scenes.tsx │ │ │ ├── components │ │ │ │ └── fingerprints.tsx │ │ │ ├── index.tsx │ │ │ ├── sceneForm │ │ │ │ ├── ExistingSceneAlert.tsx │ │ │ │ ├── SceneForm.tsx │ │ │ │ ├── diff.ts │ │ │ │ ├── index.ts │ │ │ │ ├── schema.ts │ │ │ │ ├── styles.scss │ │ │ │ └── types.ts │ │ │ └── styles.scss │ │ ├── search │ │ │ ├── Search.tsx │ │ │ ├── index.ts │ │ │ └── search.scss │ │ ├── sites │ │ │ ├── Site.tsx │ │ │ ├── SiteAdd.tsx │ │ │ ├── SiteEdit.tsx │ │ │ ├── Sites.tsx │ │ │ ├── index.tsx │ │ │ └── siteForm │ │ │ │ ├── SiteForm.tsx │ │ │ │ └── index.ts │ │ ├── studios │ │ │ ├── Studio.tsx │ │ │ ├── StudioAdd.tsx │ │ │ ├── StudioDelete.tsx │ │ │ ├── StudioEdit.tsx │ │ │ ├── StudioEditUpdate.tsx │ │ │ ├── Studios.tsx │ │ │ ├── components │ │ │ │ ├── index.ts │ │ │ │ └── studioPerformers.tsx │ │ │ ├── index.tsx │ │ │ ├── studioForm │ │ │ │ ├── StudioForm.tsx │ │ │ │ ├── diff.ts │ │ │ │ ├── index.ts │ │ │ │ ├── schema.ts │ │ │ │ └── types.ts │ │ │ └── styles.scss │ │ ├── tags │ │ │ ├── Tag.tsx │ │ │ ├── TagAdd.tsx │ │ │ ├── TagDelete.tsx │ │ │ ├── TagEdit.tsx │ │ │ ├── TagEditUpdate.tsx │ │ │ ├── TagMerge.tsx │ │ │ ├── Tags.tsx │ │ │ ├── index.tsx │ │ │ └── tagForm │ │ │ │ ├── TagForm.tsx │ │ │ │ ├── diff.ts │ │ │ │ ├── index.ts │ │ │ │ ├── schema.ts │ │ │ │ └── types.ts │ │ ├── users │ │ │ ├── GenerateInviteKeyModal.tsx │ │ │ ├── User.tsx │ │ │ ├── UserAdd.tsx │ │ │ ├── UserConfirmChangeEmail.tsx │ │ │ ├── UserEdit.tsx │ │ │ ├── UserEditForm.tsx │ │ │ ├── UserEdits.tsx │ │ │ ├── UserFingerprints.tsx │ │ │ ├── UserFingerprintsList │ │ │ │ ├── UserFingerprint.tsx │ │ │ │ ├── UserFingerprintsList.tsx │ │ │ │ ├── UserSceneLine.tsx │ │ │ │ └── index.ts │ │ │ ├── UserForm.tsx │ │ │ ├── UserNotificationPreferences.tsx │ │ │ ├── UserPassword.tsx │ │ │ ├── UserPasswordForm.tsx │ │ │ ├── UserValidateChangeEmail.tsx │ │ │ ├── Users.tsx │ │ │ ├── index.tsx │ │ │ └── styles.scss │ │ └── version │ │ │ ├── Version.tsx │ │ │ └── index.ts │ ├── styles │ │ └── theme.scss │ └── utils │ │ ├── country.ts │ │ ├── createClient.ts │ │ ├── data.ts │ │ ├── date.ts │ │ ├── diff.ts │ │ ├── edit.ts │ │ ├── enum.ts │ │ ├── general.ts │ │ ├── index.ts │ │ ├── intl.ts │ │ ├── markdown.tsx │ │ ├── route.ts │ │ ├── transforms.ts │ │ ├── url.ts │ │ └── user.ts ├── tsconfig.json └── vite.config.mjs ├── go.mod ├── go.sum ├── gqlgen.yml ├── graphql └── schema │ ├── schema.graphql │ └── types │ ├── config.graphql │ ├── draft.graphql │ ├── edit.graphql │ ├── filter.graphql │ ├── image.graphql │ ├── misc.graphql │ ├── notifications.graphql │ ├── performer.graphql │ ├── scene.graphql │ ├── site.graphql │ ├── studio.graphql │ ├── tag.graphql │ ├── user.graphql │ └── version.graphql ├── internal ├── api │ ├── context_keys.go │ ├── directives.go │ ├── draft_integration_test.go │ ├── edit_integration_test.go │ ├── field_test.go │ ├── graphql_client_test.go │ ├── integration_test.go │ ├── loaders.go │ ├── notification_integration_test.go │ ├── performer_edit_integration_test.go │ ├── performer_integration_test.go │ ├── performer_resolver_integration_test.go │ ├── resolver.go │ ├── resolver_model_draft.go │ ├── resolver_model_edit.go │ ├── resolver_model_edit_comment.go │ ├── resolver_model_edit_vote.go │ ├── resolver_model_image.go │ ├── resolver_model_notification.go │ ├── resolver_model_performer.go │ ├── resolver_model_performer_draft.go │ ├── resolver_model_performer_edit.go │ ├── resolver_model_scene.go │ ├── resolver_model_scene_draft.go │ ├── resolver_model_scene_edit.go │ ├── resolver_model_site.go │ ├── resolver_model_studio.go │ ├── resolver_model_studio_edit.go │ ├── resolver_model_tag.go │ ├── resolver_model_tag_category.go │ ├── resolver_model_tag_edit.go │ ├── resolver_model_url.go │ ├── resolver_model_user.go │ ├── resolver_mutation_draft.go │ ├── resolver_mutation_edit.go │ ├── resolver_mutation_image.go │ ├── resolver_mutation_notifications.go │ ├── resolver_mutation_performer.go │ ├── resolver_mutation_scene.go │ ├── resolver_mutation_site.go │ ├── resolver_mutation_studio.go │ ├── resolver_mutation_tag.go │ ├── resolver_mutation_tag_category.go │ ├── resolver_mutation_user.go │ ├── resolver_query_draft.go │ ├── resolver_query_edit.go │ ├── resolver_query_notifications.go │ ├── resolver_query_performer.go │ ├── resolver_query_scene.go │ ├── resolver_query_site.go │ ├── resolver_query_studio.go │ ├── resolver_query_tag.go │ ├── resolver_query_tag_category.go │ ├── resolver_query_user.go │ ├── routes_image.go │ ├── routes_root.go │ ├── scene_edit_integration_test.go │ ├── scene_integration_test.go │ ├── search_integration_test.go │ ├── server.go │ ├── session.go │ ├── site_integration_test.go │ ├── studio_edit_integration_test.go │ ├── studio_integration_test.go │ ├── tag_category_integration_test.go │ ├── tag_edit_integration_test.go │ ├── tag_integration_test.go │ ├── user_integration_test.go │ └── utils.go ├── auth │ └── authorization.go ├── config │ ├── config.go │ └── paths.go ├── converter │ ├── converter.go │ └── gen │ │ ├── extensions.go │ │ ├── generated.go │ │ └── interfaces.go ├── cron │ └── cron.go ├── database │ ├── database.go │ ├── migrations │ │ └── postgres │ │ │ ├── 01_initial.down.sql │ │ │ ├── 01_initial.up.sql │ │ │ ├── 02_create_search.down.sql │ │ │ ├── 02_create_search.up.sql │ │ │ ├── 03_misc.up.sql │ │ │ ├── 04_image_tables.up.sql │ │ │ ├── 05_edits.up.sql │ │ │ ├── 06_deletion_and_redirects.up.sql │ │ │ ├── 07_optimization_indexes.up.sql │ │ │ ├── 08_user_invite.up.sql │ │ │ ├── 09_image_data.up.sql │ │ │ ├── 10_tag_categories.up.sql │ │ │ ├── 11_image_constraints.up.sql │ │ │ ├── 12_fix_performer_trigger.up.sql │ │ │ ├── 13_sort_indexes.up.sql │ │ │ ├── 14_phash_distance_search.up.sql │ │ │ ├── 15_scene_fingerprint_submissions.up.sql │ │ │ ├── 16_fix_scene_update_trigger.up.sql │ │ │ ├── 17_edit_votes.up.sql │ │ │ ├── 18_fingerprint_user.up.sql │ │ │ ├── 19_scene_created_index.up.sql │ │ │ ├── 20_edit_constraints.up.sql │ │ │ ├── 21_site_urls.up.sql │ │ │ ├── 22_performer_search_indexes.up.sql │ │ │ ├── 23_favorites.up.sql │ │ │ ├── 24_drafts.up.sql │ │ │ ├── 25_scene_codes.up.sql │ │ │ ├── 26_scene_partial_date.down.sql │ │ │ ├── 26_scene_partial_date.up.sql │ │ │ ├── 27_edit_closed_at.up.sql │ │ │ ├── 28_studio_favorite_index.up.sql │ │ │ ├── 29_scene_edit_fingerprint_index.up.sql │ │ │ ├── 30_edit_bot.up.sql │ │ │ ├── 31_scenes_deleted_idx.up.sql │ │ │ ├── 32_edit_indexes.up.sql │ │ │ ├── 33_invite_key_uses.up.sql │ │ │ ├── 34_fingerprints.up.sql │ │ │ ├── 35_websearch.up.sql │ │ │ ├── 36_drop_unique_invite.up.sql │ │ │ ├── 37_tokens.up.sql │ │ │ ├── 38_scenes_studio_id_index.up.sql │ │ │ ├── 39_edits_updates.up.sql │ │ │ ├── 40_fingerprint_vote.up.sql │ │ │ ├── 41_notifications.up.sql │ │ │ ├── 42_date_columns.up.sql │ │ │ ├── 43_studio_aliases.up.sql │ │ │ ├── 44_performer_death_date.up.sql │ │ │ ├── 45_scene_production_date.up.sql │ │ │ ├── 46_update_default_notifications.up.sql │ │ │ ├── 47_favorite_unique.up.sql │ │ │ ├── 48_fingerprinted_scene_edit_notification.up.sql │ │ │ ├── 49_entity_search_lower_idx.up.sql │ │ │ └── 50_rename_url_siteid.up.sql │ └── testutil │ │ └── testutil.go ├── dataloader │ ├── bodymodificationsloader_gen.go │ ├── boolsloader_gen.go │ ├── editcommentloader_gen.go │ ├── editloader_gen.go │ ├── fingerprintsloader_gen.go │ ├── imageloader_gen.go │ ├── loaders.go │ ├── performerloader_gen.go │ ├── sceneappearancesloader_gen.go │ ├── sceneloader_gen.go │ ├── siteloader_gen.go │ ├── stringsloader_gen.go │ ├── studioloader_gen.go │ ├── submittedfingerprintsloader_gen.go │ ├── tagcategoryloader_gen.go │ ├── tagloader_gen.go │ ├── urlloader_gen.go │ └── uuidsloader_gen.go ├── email │ ├── manager.go │ ├── templates │ │ ├── email.html │ │ └── email.txt │ └── user.go ├── image │ ├── cache │ │ └── cache.go │ ├── resize_unix.go │ ├── resize_windows.go │ └── sort.go ├── models │ ├── assign │ │ └── assign.go │ ├── extension_criterion_input.go │ ├── extension_edit_details.go │ ├── extension_edit_details_test.go │ ├── extension_role_enum.go │ ├── generate.go │ ├── generated_exec.go │ ├── generated_models.go │ ├── model_draft.go │ ├── model_edit.go │ ├── model_image.go │ ├── model_invite_key.go │ ├── model_notification.go │ ├── model_performer.go │ ├── model_scene.go │ ├── model_site.go │ ├── model_studio.go │ ├── model_tag.go │ ├── model_tag_category.go │ ├── model_user.go │ ├── model_user_tokens.go │ ├── scalars.go │ ├── translate.go │ ├── url.go │ └── validator │ │ └── validator.go ├── queries │ ├── copyfrom.go │ ├── db.go │ ├── draft.sql.go │ ├── edit.sql.go │ ├── fingerprint.sql.go │ ├── helpers.go │ ├── image.sql.go │ ├── invite_key.sql.go │ ├── models.go │ ├── notification.sql.go │ ├── performer.sql.go │ ├── querier.go │ ├── scene.sql.go │ ├── site.sql.go │ ├── sql │ │ ├── README.md │ │ ├── draft.sql │ │ ├── edit.sql │ │ ├── fingerprint.sql │ │ ├── image.sql │ │ ├── invite_key.sql │ │ ├── notification.sql │ │ ├── performer.sql │ │ ├── scene.sql │ │ ├── site.sql │ │ ├── studio.sql │ │ ├── tag.sql │ │ ├── tag_category.sql │ │ ├── user.sql │ │ └── user_token.sql │ ├── studio.sql.go │ ├── tag.sql.go │ ├── tag_category.sql.go │ ├── types.go │ ├── user.sql.go │ └── user_token.sql.go ├── service │ ├── README.md │ ├── draft │ │ └── service.go │ ├── edit │ │ ├── edit.go │ │ ├── modbot.go │ │ ├── performer.go │ │ ├── query.go │ │ ├── scene.go │ │ ├── service.go │ │ ├── studio.go │ │ ├── tag.go │ │ └── validate.go │ ├── errutil │ │ └── errors.go │ ├── factory.go │ ├── image │ │ ├── service.go │ │ └── utils.go │ ├── interface.go │ ├── invite │ │ └── service.go │ ├── notification │ │ └── service.go │ ├── performer │ │ ├── joins.go │ │ ├── query.go │ │ └── service.go │ ├── query │ │ ├── criterion.go │ │ └── helpers.go │ ├── scene │ │ ├── query.go │ │ └── service.go │ ├── site │ │ ├── query.go │ │ └── service.go │ ├── studio │ │ ├── query.go │ │ └── service.go │ ├── tag │ │ ├── query.go │ │ └── service.go │ ├── user │ │ ├── activation.go │ │ ├── apikey.go │ │ ├── invite.go │ │ ├── joins.go │ │ ├── password.go │ │ ├── query.go │ │ ├── service.go │ │ ├── token.go │ │ ├── user.go │ │ └── validate.go │ └── usertoken │ │ └── service.go └── storage │ ├── favicon.go │ ├── file.go │ ├── image_backend.go │ └── s3.go ├── pkg ├── logger │ ├── logger.go │ ├── otel.go │ └── progress_formatter.go └── utils │ ├── arguments.go │ ├── crypto.go │ ├── date.go │ ├── enum.go │ ├── file.go │ ├── json.go │ ├── password_blacklist.go │ ├── slice_compare.go │ └── slice_compare_test.go ├── scripts └── getDate.go └── sqlc.yaml /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/discussion---request-for-commentary--rfc-.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/.github/ISSUE_TEMPLATE/discussion---request-for-commentary--rfc-.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/frontend-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/.github/workflows/frontend-lint.yml -------------------------------------------------------------------------------- /.github/workflows/golangci-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/.github/workflows/golangci-lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/.golangci.yml -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/README.md -------------------------------------------------------------------------------- /cmd/stash-box/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/cmd/stash-box/init.go -------------------------------------------------------------------------------- /cmd/stash-box/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/cmd/stash-box/main.go -------------------------------------------------------------------------------- /docker/build/x86_64/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/docker/build/x86_64/Dockerfile -------------------------------------------------------------------------------- /docker/build/x86_64/db/initdb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/docker/build/x86_64/db/initdb.sh -------------------------------------------------------------------------------- /docker/build/x86_64/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/docker/build/x86_64/docker-compose.yml -------------------------------------------------------------------------------- /docker/ci/x86_64/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/docker/ci/x86_64/Dockerfile -------------------------------------------------------------------------------- /docker/ci/x86_64/docker_push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/docker/ci/x86_64/docker_push.sh -------------------------------------------------------------------------------- /docker/production/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/docker/production/docker-compose.yml -------------------------------------------------------------------------------- /docker/production/postgres/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/docker/production/postgres/Dockerfile -------------------------------------------------------------------------------- /frontend/.env.development: -------------------------------------------------------------------------------- 1 | PORT=3001 2 | -------------------------------------------------------------------------------- /frontend/.env.development.local.shadow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/.env.development.local.shadow -------------------------------------------------------------------------------- /frontend/.gitattributes: -------------------------------------------------------------------------------- 1 | src/**/*.ts* text eol=lf 2 | -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/.nvmrc: -------------------------------------------------------------------------------- 1 | 22 2 | -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/biome.json -------------------------------------------------------------------------------- /frontend/codegen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/codegen.yml -------------------------------------------------------------------------------- /frontend/embed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/embed.go -------------------------------------------------------------------------------- /frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/index.html -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/pnpm-lock.yaml -------------------------------------------------------------------------------- /frontend/src/App.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/App.scss -------------------------------------------------------------------------------- /frontend/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/App.tsx -------------------------------------------------------------------------------- /frontend/src/Login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/Login.tsx -------------------------------------------------------------------------------- /frontend/src/Main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/Main.tsx -------------------------------------------------------------------------------- /frontend/src/components/changeRow/ChangeRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/changeRow/ChangeRow.tsx -------------------------------------------------------------------------------- /frontend/src/components/changeRow/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./ChangeRow"; 2 | -------------------------------------------------------------------------------- /frontend/src/components/checkboxSelect/CheckboxSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/checkboxSelect/CheckboxSelect.tsx -------------------------------------------------------------------------------- /frontend/src/components/checkboxSelect/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/checkboxSelect/index.ts -------------------------------------------------------------------------------- /frontend/src/components/checkboxSelect/styles.scss: -------------------------------------------------------------------------------- 1 | .CheckboxSelect { 2 | width: 20rem; 3 | } 4 | -------------------------------------------------------------------------------- /frontend/src/components/deleteButton/DeleteButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/deleteButton/DeleteButton.tsx -------------------------------------------------------------------------------- /frontend/src/components/deleteButton/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/deleteButton/index.ts -------------------------------------------------------------------------------- /frontend/src/components/editCard/AddComment.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/editCard/AddComment.tsx -------------------------------------------------------------------------------- /frontend/src/components/editCard/EditCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/editCard/EditCard.tsx -------------------------------------------------------------------------------- /frontend/src/components/editCard/EditComment.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/editCard/EditComment.tsx -------------------------------------------------------------------------------- /frontend/src/components/editCard/EditExpiration.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/editCard/EditExpiration.tsx -------------------------------------------------------------------------------- /frontend/src/components/editCard/EditHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/editCard/EditHeader.tsx -------------------------------------------------------------------------------- /frontend/src/components/editCard/EditStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/editCard/EditStatus.tsx -------------------------------------------------------------------------------- /frontend/src/components/editCard/ModifyEdit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/editCard/ModifyEdit.tsx -------------------------------------------------------------------------------- /frontend/src/components/editCard/VoteBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/editCard/VoteBar.tsx -------------------------------------------------------------------------------- /frontend/src/components/editCard/Votes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/editCard/Votes.tsx -------------------------------------------------------------------------------- /frontend/src/components/editCard/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/editCard/index.ts -------------------------------------------------------------------------------- /frontend/src/components/editCard/renderEntity.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/editCard/renderEntity.tsx -------------------------------------------------------------------------------- /frontend/src/components/editCard/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/editCard/styles.scss -------------------------------------------------------------------------------- /frontend/src/components/editImages/editImages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/editImages/editImages.tsx -------------------------------------------------------------------------------- /frontend/src/components/editImages/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/editImages/index.ts -------------------------------------------------------------------------------- /frontend/src/components/editImages/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/editImages/styles.scss -------------------------------------------------------------------------------- /frontend/src/components/form/BodyModification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/form/BodyModification.tsx -------------------------------------------------------------------------------- /frontend/src/components/form/EditNote.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/form/EditNote.tsx -------------------------------------------------------------------------------- /frontend/src/components/form/Image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/form/Image.tsx -------------------------------------------------------------------------------- /frontend/src/components/form/NavButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/form/NavButtons.tsx -------------------------------------------------------------------------------- /frontend/src/components/form/NoteInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/form/NoteInput.tsx -------------------------------------------------------------------------------- /frontend/src/components/form/SubmitButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/form/SubmitButtons.tsx -------------------------------------------------------------------------------- /frontend/src/components/form/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/form/index.ts -------------------------------------------------------------------------------- /frontend/src/components/form/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/form/styles.scss -------------------------------------------------------------------------------- /frontend/src/components/fragments/ErrorMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/fragments/ErrorMessage.tsx -------------------------------------------------------------------------------- /frontend/src/components/fragments/Favorite.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/fragments/Favorite.tsx -------------------------------------------------------------------------------- /frontend/src/components/fragments/GenderIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/fragments/GenderIcon.tsx -------------------------------------------------------------------------------- /frontend/src/components/fragments/Help.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/fragments/Help.tsx -------------------------------------------------------------------------------- /frontend/src/components/fragments/Icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/fragments/Icon.tsx -------------------------------------------------------------------------------- /frontend/src/components/fragments/LoadingIndicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/fragments/LoadingIndicator.tsx -------------------------------------------------------------------------------- /frontend/src/components/fragments/PerformerName.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/fragments/PerformerName.tsx -------------------------------------------------------------------------------- /frontend/src/components/fragments/SearchHint.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/fragments/SearchHint.tsx -------------------------------------------------------------------------------- /frontend/src/components/fragments/SiteLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/fragments/SiteLink.tsx -------------------------------------------------------------------------------- /frontend/src/components/fragments/TagLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/fragments/TagLink.tsx -------------------------------------------------------------------------------- /frontend/src/components/fragments/Thumbnail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/fragments/Thumbnail.tsx -------------------------------------------------------------------------------- /frontend/src/components/fragments/Tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/fragments/Tooltip.tsx -------------------------------------------------------------------------------- /frontend/src/components/fragments/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/fragments/index.ts -------------------------------------------------------------------------------- /frontend/src/components/fragments/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/fragments/styles.scss -------------------------------------------------------------------------------- /frontend/src/components/image/Image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/image/Image.tsx -------------------------------------------------------------------------------- /frontend/src/components/image/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./Image"; 2 | -------------------------------------------------------------------------------- /frontend/src/components/image/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/image/styles.scss -------------------------------------------------------------------------------- /frontend/src/components/imageCarousel/ImageCarousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/imageCarousel/ImageCarousel.tsx -------------------------------------------------------------------------------- /frontend/src/components/imageCarousel/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/imageCarousel/index.ts -------------------------------------------------------------------------------- /frontend/src/components/imageCarousel/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/imageCarousel/styles.scss -------------------------------------------------------------------------------- /frontend/src/components/imageChangeRow/ImageChangeRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/imageChangeRow/ImageChangeRow.tsx -------------------------------------------------------------------------------- /frontend/src/components/imageChangeRow/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./ImageChangeRow"; 2 | -------------------------------------------------------------------------------- /frontend/src/components/imageChangeRow/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/imageChangeRow/styles.scss -------------------------------------------------------------------------------- /frontend/src/components/linkedChangeRow/LinkedChangeRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/linkedChangeRow/LinkedChangeRow.tsx -------------------------------------------------------------------------------- /frontend/src/components/linkedChangeRow/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./LinkedChangeRow"; 2 | -------------------------------------------------------------------------------- /frontend/src/components/list/EditList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/list/EditList.tsx -------------------------------------------------------------------------------- /frontend/src/components/list/List.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/list/List.tsx -------------------------------------------------------------------------------- /frontend/src/components/list/SceneList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/list/SceneList.tsx -------------------------------------------------------------------------------- /frontend/src/components/list/TagList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/list/TagList.tsx -------------------------------------------------------------------------------- /frontend/src/components/list/URLList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/list/URLList.tsx -------------------------------------------------------------------------------- /frontend/src/components/list/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/list/index.ts -------------------------------------------------------------------------------- /frontend/src/components/list/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/list/styles.scss -------------------------------------------------------------------------------- /frontend/src/components/listChangeRow/ListChangeRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/listChangeRow/ListChangeRow.tsx -------------------------------------------------------------------------------- /frontend/src/components/listChangeRow/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./ListChangeRow"; 2 | -------------------------------------------------------------------------------- /frontend/src/components/modal/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/modal/Modal.tsx -------------------------------------------------------------------------------- /frontend/src/components/modal/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/modal/index.ts -------------------------------------------------------------------------------- /frontend/src/components/multiSelect/MultiSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/multiSelect/MultiSelect.tsx -------------------------------------------------------------------------------- /frontend/src/components/multiSelect/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/multiSelect/index.ts -------------------------------------------------------------------------------- /frontend/src/components/multiSelect/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/multiSelect/styles.scss -------------------------------------------------------------------------------- /frontend/src/components/pagination/Pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/pagination/Pagination.tsx -------------------------------------------------------------------------------- /frontend/src/components/pagination/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/pagination/index.ts -------------------------------------------------------------------------------- /frontend/src/components/performerCard/PerformerCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/performerCard/PerformerCard.tsx -------------------------------------------------------------------------------- /frontend/src/components/performerCard/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/performerCard/index.ts -------------------------------------------------------------------------------- /frontend/src/components/performerCard/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/performerCard/styles.scss -------------------------------------------------------------------------------- /frontend/src/components/performerSelect/PerformerSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/performerSelect/PerformerSelect.tsx -------------------------------------------------------------------------------- /frontend/src/components/performerSelect/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/performerSelect/index.ts -------------------------------------------------------------------------------- /frontend/src/components/performerSelect/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/performerSelect/styles.scss -------------------------------------------------------------------------------- /frontend/src/components/sceneCard/SceneCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/sceneCard/SceneCard.tsx -------------------------------------------------------------------------------- /frontend/src/components/sceneCard/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/sceneCard/index.ts -------------------------------------------------------------------------------- /frontend/src/components/sceneCard/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/sceneCard/styles.scss -------------------------------------------------------------------------------- /frontend/src/components/searchField/SearchField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/searchField/SearchField.tsx -------------------------------------------------------------------------------- /frontend/src/components/searchField/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/searchField/index.ts -------------------------------------------------------------------------------- /frontend/src/components/searchField/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/searchField/styles.scss -------------------------------------------------------------------------------- /frontend/src/components/studioSelect/StudioSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/studioSelect/StudioSelect.tsx -------------------------------------------------------------------------------- /frontend/src/components/studioSelect/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./StudioSelect"; 2 | -------------------------------------------------------------------------------- /frontend/src/components/studioSelect/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/studioSelect/styles.scss -------------------------------------------------------------------------------- /frontend/src/components/tagFilter/TagFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/tagFilter/TagFilter.tsx -------------------------------------------------------------------------------- /frontend/src/components/tagFilter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/tagFilter/index.ts -------------------------------------------------------------------------------- /frontend/src/components/tagFilter/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/tagFilter/styles.scss -------------------------------------------------------------------------------- /frontend/src/components/tagSelect/TagSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/tagSelect/TagSelect.tsx -------------------------------------------------------------------------------- /frontend/src/components/tagSelect/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/tagSelect/index.ts -------------------------------------------------------------------------------- /frontend/src/components/tagSelect/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/tagSelect/styles.scss -------------------------------------------------------------------------------- /frontend/src/components/title/Title.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/title/Title.tsx -------------------------------------------------------------------------------- /frontend/src/components/title/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./Title"; 2 | -------------------------------------------------------------------------------- /frontend/src/components/urlChangeRow/URLChangeRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/urlChangeRow/URLChangeRow.tsx -------------------------------------------------------------------------------- /frontend/src/components/urlChangeRow/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/urlChangeRow/index.ts -------------------------------------------------------------------------------- /frontend/src/components/urlInput/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/urlInput/index.ts -------------------------------------------------------------------------------- /frontend/src/components/urlInput/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/urlInput/styles.scss -------------------------------------------------------------------------------- /frontend/src/components/urlInput/urlInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/components/urlInput/urlInput.tsx -------------------------------------------------------------------------------- /frontend/src/constants/enums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/constants/enums.ts -------------------------------------------------------------------------------- /frontend/src/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/constants/index.ts -------------------------------------------------------------------------------- /frontend/src/constants/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/constants/route.ts -------------------------------------------------------------------------------- /frontend/src/context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/context.tsx -------------------------------------------------------------------------------- /frontend/src/graphql/fragments/CommentFragment.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/fragments/CommentFragment.gql -------------------------------------------------------------------------------- /frontend/src/graphql/fragments/EditFragment.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/fragments/EditFragment.gql -------------------------------------------------------------------------------- /frontend/src/graphql/fragments/FingerprintFragment.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/fragments/FingerprintFragment.gql -------------------------------------------------------------------------------- /frontend/src/graphql/fragments/ImageFragment.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/fragments/ImageFragment.gql -------------------------------------------------------------------------------- /frontend/src/graphql/fragments/PerformerFragment.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/fragments/PerformerFragment.gql -------------------------------------------------------------------------------- /frontend/src/graphql/fragments/QuerySceneFragment.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/fragments/QuerySceneFragment.gql -------------------------------------------------------------------------------- /frontend/src/graphql/fragments/SceneFragment.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/fragments/SceneFragment.gql -------------------------------------------------------------------------------- /frontend/src/graphql/fragments/ScenePerformerFragment.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/fragments/ScenePerformerFragment.gql -------------------------------------------------------------------------------- /frontend/src/graphql/fragments/SearchPerformerFragment.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/fragments/SearchPerformerFragment.gql -------------------------------------------------------------------------------- /frontend/src/graphql/fragments/StudioFragment.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/fragments/StudioFragment.gql -------------------------------------------------------------------------------- /frontend/src/graphql/fragments/TagFragment.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/fragments/TagFragment.gql -------------------------------------------------------------------------------- /frontend/src/graphql/fragments/URLFragment.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/fragments/URLFragment.gql -------------------------------------------------------------------------------- /frontend/src/graphql/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/index.ts -------------------------------------------------------------------------------- /frontend/src/graphql/mutations/ActivateNewUser.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/mutations/ActivateNewUser.gql -------------------------------------------------------------------------------- /frontend/src/graphql/mutations/AddImage.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/mutations/AddImage.gql -------------------------------------------------------------------------------- /frontend/src/graphql/mutations/AddScene.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/mutations/AddScene.gql -------------------------------------------------------------------------------- /frontend/src/graphql/mutations/AddSite.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/mutations/AddSite.gql -------------------------------------------------------------------------------- /frontend/src/graphql/mutations/AddStudio.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/mutations/AddStudio.gql -------------------------------------------------------------------------------- /frontend/src/graphql/mutations/AddTagCategory.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/mutations/AddTagCategory.gql -------------------------------------------------------------------------------- /frontend/src/graphql/mutations/AddUser.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/mutations/AddUser.gql -------------------------------------------------------------------------------- /frontend/src/graphql/mutations/ApplyEdit.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/mutations/ApplyEdit.gql -------------------------------------------------------------------------------- /frontend/src/graphql/mutations/CancelEdit.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/mutations/CancelEdit.gql -------------------------------------------------------------------------------- /frontend/src/graphql/mutations/ChangePassword.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/mutations/ChangePassword.gql -------------------------------------------------------------------------------- /frontend/src/graphql/mutations/ConfirmChangeEmail.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/mutations/ConfirmChangeEmail.gql -------------------------------------------------------------------------------- /frontend/src/graphql/mutations/DeleteDraft.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/mutations/DeleteDraft.gql -------------------------------------------------------------------------------- /frontend/src/graphql/mutations/DeleteScene.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/mutations/DeleteScene.gql -------------------------------------------------------------------------------- /frontend/src/graphql/mutations/DeleteSite.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/mutations/DeleteSite.gql -------------------------------------------------------------------------------- /frontend/src/graphql/mutations/DeleteStudio.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/mutations/DeleteStudio.gql -------------------------------------------------------------------------------- /frontend/src/graphql/mutations/DeleteTagCategory.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/mutations/DeleteTagCategory.gql -------------------------------------------------------------------------------- /frontend/src/graphql/mutations/DeleteUser.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/mutations/DeleteUser.gql -------------------------------------------------------------------------------- /frontend/src/graphql/mutations/EditComment.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/mutations/EditComment.gql -------------------------------------------------------------------------------- /frontend/src/graphql/mutations/FavoritePerformer.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/mutations/FavoritePerformer.gql -------------------------------------------------------------------------------- /frontend/src/graphql/mutations/FavoriteStudio.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/mutations/FavoriteStudio.gql -------------------------------------------------------------------------------- /frontend/src/graphql/mutations/GenerateInviteCode.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/mutations/GenerateInviteCode.gql -------------------------------------------------------------------------------- /frontend/src/graphql/mutations/GrantInvite.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/mutations/GrantInvite.gql -------------------------------------------------------------------------------- /frontend/src/graphql/mutations/MarkNotificationRead.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/mutations/MarkNotificationRead.gql -------------------------------------------------------------------------------- /frontend/src/graphql/mutations/MarkNotificationsRead.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/mutations/MarkNotificationsRead.gql -------------------------------------------------------------------------------- /frontend/src/graphql/mutations/NewUser.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/mutations/NewUser.gql -------------------------------------------------------------------------------- /frontend/src/graphql/mutations/PerformerEdit.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/mutations/PerformerEdit.gql -------------------------------------------------------------------------------- /frontend/src/graphql/mutations/PerformerEditUpdate.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/mutations/PerformerEditUpdate.gql -------------------------------------------------------------------------------- /frontend/src/graphql/mutations/RegenerateAPIKey.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/mutations/RegenerateAPIKey.gql -------------------------------------------------------------------------------- /frontend/src/graphql/mutations/RequestChangeEmail.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/mutations/RequestChangeEmail.gql -------------------------------------------------------------------------------- /frontend/src/graphql/mutations/RescindInviteCode.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/mutations/RescindInviteCode.gql -------------------------------------------------------------------------------- /frontend/src/graphql/mutations/ResetPassword.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/mutations/ResetPassword.gql -------------------------------------------------------------------------------- /frontend/src/graphql/mutations/RevokeInvite.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/mutations/RevokeInvite.gql -------------------------------------------------------------------------------- /frontend/src/graphql/mutations/SceneEdit.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/mutations/SceneEdit.gql -------------------------------------------------------------------------------- /frontend/src/graphql/mutations/SceneEditUpdate.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/mutations/SceneEditUpdate.gql -------------------------------------------------------------------------------- /frontend/src/graphql/mutations/StudioEdit.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/mutations/StudioEdit.gql -------------------------------------------------------------------------------- /frontend/src/graphql/mutations/StudioEditUpdate.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/mutations/StudioEditUpdate.gql -------------------------------------------------------------------------------- /frontend/src/graphql/mutations/TagEdit.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/mutations/TagEdit.gql -------------------------------------------------------------------------------- /frontend/src/graphql/mutations/TagEditUpdate.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/mutations/TagEditUpdate.gql -------------------------------------------------------------------------------- /frontend/src/graphql/mutations/UnmatchFingerprint.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/mutations/UnmatchFingerprint.gql -------------------------------------------------------------------------------- /frontend/src/graphql/mutations/UpdateNotificationSubscriptions.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/mutations/UpdateNotificationSubscriptions.gql -------------------------------------------------------------------------------- /frontend/src/graphql/mutations/UpdateScene.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/mutations/UpdateScene.gql -------------------------------------------------------------------------------- /frontend/src/graphql/mutations/UpdateSite.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/mutations/UpdateSite.gql -------------------------------------------------------------------------------- /frontend/src/graphql/mutations/UpdateStudio.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/mutations/UpdateStudio.gql -------------------------------------------------------------------------------- /frontend/src/graphql/mutations/UpdateTagCategory.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/mutations/UpdateTagCategory.gql -------------------------------------------------------------------------------- /frontend/src/graphql/mutations/UpdateUser.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/mutations/UpdateUser.gql -------------------------------------------------------------------------------- /frontend/src/graphql/mutations/ValidateChangeEmail.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/mutations/ValidateChangeEmail.gql -------------------------------------------------------------------------------- /frontend/src/graphql/mutations/Vote.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/mutations/Vote.gql -------------------------------------------------------------------------------- /frontend/src/graphql/mutations/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/mutations/index.ts -------------------------------------------------------------------------------- /frontend/src/graphql/queries/Categories.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/queries/Categories.gql -------------------------------------------------------------------------------- /frontend/src/graphql/queries/Category.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/queries/Category.gql -------------------------------------------------------------------------------- /frontend/src/graphql/queries/Config.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/queries/Config.gql -------------------------------------------------------------------------------- /frontend/src/graphql/queries/Draft.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/queries/Draft.gql -------------------------------------------------------------------------------- /frontend/src/graphql/queries/Drafts.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/queries/Drafts.gql -------------------------------------------------------------------------------- /frontend/src/graphql/queries/Edit.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/queries/Edit.gql -------------------------------------------------------------------------------- /frontend/src/graphql/queries/EditUpdate.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/queries/EditUpdate.gql -------------------------------------------------------------------------------- /frontend/src/graphql/queries/Edits.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/queries/Edits.gql -------------------------------------------------------------------------------- /frontend/src/graphql/queries/FullPerformer.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/queries/FullPerformer.gql -------------------------------------------------------------------------------- /frontend/src/graphql/queries/Me.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/queries/Me.gql -------------------------------------------------------------------------------- /frontend/src/graphql/queries/PendingEditsCount.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/queries/PendingEditsCount.gql -------------------------------------------------------------------------------- /frontend/src/graphql/queries/Performer.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/queries/Performer.gql -------------------------------------------------------------------------------- /frontend/src/graphql/queries/Performers.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/queries/Performers.gql -------------------------------------------------------------------------------- /frontend/src/graphql/queries/PublicUser.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/queries/PublicUser.gql -------------------------------------------------------------------------------- /frontend/src/graphql/queries/QueryExistingPerformer.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/queries/QueryExistingPerformer.gql -------------------------------------------------------------------------------- /frontend/src/graphql/queries/QueryExistingScene.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/queries/QueryExistingScene.gql -------------------------------------------------------------------------------- /frontend/src/graphql/queries/QueryNotifications.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/queries/QueryNotifications.gql -------------------------------------------------------------------------------- /frontend/src/graphql/queries/Scene.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/queries/Scene.gql -------------------------------------------------------------------------------- /frontend/src/graphql/queries/ScenePairings.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/queries/ScenePairings.gql -------------------------------------------------------------------------------- /frontend/src/graphql/queries/Scenes.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/queries/Scenes.gql -------------------------------------------------------------------------------- /frontend/src/graphql/queries/ScenesWithFingerprints.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/queries/ScenesWithFingerprints.gql -------------------------------------------------------------------------------- /frontend/src/graphql/queries/ScenesWithoutCount.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/queries/ScenesWithoutCount.gql -------------------------------------------------------------------------------- /frontend/src/graphql/queries/SearchAll.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/queries/SearchAll.gql -------------------------------------------------------------------------------- /frontend/src/graphql/queries/SearchPerformers.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/queries/SearchPerformers.gql -------------------------------------------------------------------------------- /frontend/src/graphql/queries/SearchTags.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/queries/SearchTags.gql -------------------------------------------------------------------------------- /frontend/src/graphql/queries/Site.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/queries/Site.gql -------------------------------------------------------------------------------- /frontend/src/graphql/queries/Sites.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/queries/Sites.gql -------------------------------------------------------------------------------- /frontend/src/graphql/queries/Studio.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/queries/Studio.gql -------------------------------------------------------------------------------- /frontend/src/graphql/queries/StudioPerformers.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/queries/StudioPerformers.gql -------------------------------------------------------------------------------- /frontend/src/graphql/queries/Studios.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/queries/Studios.gql -------------------------------------------------------------------------------- /frontend/src/graphql/queries/Tag.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/queries/Tag.gql -------------------------------------------------------------------------------- /frontend/src/graphql/queries/Tags.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/queries/Tags.gql -------------------------------------------------------------------------------- /frontend/src/graphql/queries/UnreadNotificationCount.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/queries/UnreadNotificationCount.gql -------------------------------------------------------------------------------- /frontend/src/graphql/queries/User.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/queries/User.gql -------------------------------------------------------------------------------- /frontend/src/graphql/queries/Users.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/queries/Users.gql -------------------------------------------------------------------------------- /frontend/src/graphql/queries/Version.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/queries/Version.gql -------------------------------------------------------------------------------- /frontend/src/graphql/queries/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/queries/index.ts -------------------------------------------------------------------------------- /frontend/src/graphql/scalars.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/scalars.d.ts -------------------------------------------------------------------------------- /frontend/src/graphql/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/graphql/types.ts -------------------------------------------------------------------------------- /frontend/src/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/hooks/index.ts -------------------------------------------------------------------------------- /frontend/src/hooks/toast.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/hooks/toast.scss -------------------------------------------------------------------------------- /frontend/src/hooks/useAuth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/hooks/useAuth.tsx -------------------------------------------------------------------------------- /frontend/src/hooks/useBeforeUnload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/hooks/useBeforeUnload.ts -------------------------------------------------------------------------------- /frontend/src/hooks/useCurrentUser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/hooks/useCurrentUser.tsx -------------------------------------------------------------------------------- /frontend/src/hooks/useEditFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/hooks/useEditFilter.tsx -------------------------------------------------------------------------------- /frontend/src/hooks/usePagination.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/hooks/usePagination.ts -------------------------------------------------------------------------------- /frontend/src/hooks/useQueryParams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/hooks/useQueryParams.ts -------------------------------------------------------------------------------- /frontend/src/hooks/useToast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/hooks/useToast.tsx -------------------------------------------------------------------------------- /frontend/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/index.tsx -------------------------------------------------------------------------------- /frontend/src/modules.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/modules.d.ts -------------------------------------------------------------------------------- /frontend/src/pages/activateUser/ActivateUser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/activateUser/ActivateUser.tsx -------------------------------------------------------------------------------- /frontend/src/pages/activateUser/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./ActivateUser"; 2 | -------------------------------------------------------------------------------- /frontend/src/pages/categories/Categories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/categories/Categories.tsx -------------------------------------------------------------------------------- /frontend/src/pages/categories/Category.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/categories/Category.tsx -------------------------------------------------------------------------------- /frontend/src/pages/categories/CategoryAdd.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/categories/CategoryAdd.tsx -------------------------------------------------------------------------------- /frontend/src/pages/categories/CategoryEdit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/categories/CategoryEdit.tsx -------------------------------------------------------------------------------- /frontend/src/pages/categories/categoryForm/CategoryForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/categories/categoryForm/CategoryForm.tsx -------------------------------------------------------------------------------- /frontend/src/pages/categories/categoryForm/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./CategoryForm"; 2 | -------------------------------------------------------------------------------- /frontend/src/pages/categories/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/categories/index.tsx -------------------------------------------------------------------------------- /frontend/src/pages/drafts/Draft.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/drafts/Draft.tsx -------------------------------------------------------------------------------- /frontend/src/pages/drafts/Drafts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/drafts/Drafts.tsx -------------------------------------------------------------------------------- /frontend/src/pages/drafts/PerformerDraft.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/drafts/PerformerDraft.tsx -------------------------------------------------------------------------------- /frontend/src/pages/drafts/SceneDraft.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/drafts/SceneDraft.tsx -------------------------------------------------------------------------------- /frontend/src/pages/drafts/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/drafts/index.tsx -------------------------------------------------------------------------------- /frontend/src/pages/drafts/parse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/drafts/parse.ts -------------------------------------------------------------------------------- /frontend/src/pages/edits/Edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/edits/Edit.tsx -------------------------------------------------------------------------------- /frontend/src/pages/edits/EditUpdate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/edits/EditUpdate.tsx -------------------------------------------------------------------------------- /frontend/src/pages/edits/Edits.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/edits/Edits.tsx -------------------------------------------------------------------------------- /frontend/src/pages/edits/components/UpdateCount.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/edits/components/UpdateCount.tsx -------------------------------------------------------------------------------- /frontend/src/pages/edits/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/edits/index.tsx -------------------------------------------------------------------------------- /frontend/src/pages/forgotPassword/ForgotPassword.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/forgotPassword/ForgotPassword.tsx -------------------------------------------------------------------------------- /frontend/src/pages/forgotPassword/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./ForgotPassword"; 2 | -------------------------------------------------------------------------------- /frontend/src/pages/home/Home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/home/Home.tsx -------------------------------------------------------------------------------- /frontend/src/pages/home/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/home/index.ts -------------------------------------------------------------------------------- /frontend/src/pages/home/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/home/styles.scss -------------------------------------------------------------------------------- /frontend/src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/index.tsx -------------------------------------------------------------------------------- /frontend/src/pages/notifications/CommentNotification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/notifications/CommentNotification.tsx -------------------------------------------------------------------------------- /frontend/src/pages/notifications/EditNotification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/notifications/EditNotification.tsx -------------------------------------------------------------------------------- /frontend/src/pages/notifications/Notification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/notifications/Notification.tsx -------------------------------------------------------------------------------- /frontend/src/pages/notifications/Notifications.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/notifications/Notifications.tsx -------------------------------------------------------------------------------- /frontend/src/pages/notifications/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./Notifications"; 2 | -------------------------------------------------------------------------------- /frontend/src/pages/notifications/sceneNotification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/notifications/sceneNotification.tsx -------------------------------------------------------------------------------- /frontend/src/pages/notifications/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/notifications/styles.scss -------------------------------------------------------------------------------- /frontend/src/pages/notifications/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/notifications/types.ts -------------------------------------------------------------------------------- /frontend/src/pages/performers/Performer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/performers/Performer.tsx -------------------------------------------------------------------------------- /frontend/src/pages/performers/PerformerAdd.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/performers/PerformerAdd.tsx -------------------------------------------------------------------------------- /frontend/src/pages/performers/PerformerDelete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/performers/PerformerDelete.tsx -------------------------------------------------------------------------------- /frontend/src/pages/performers/PerformerEdit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/performers/PerformerEdit.tsx -------------------------------------------------------------------------------- /frontend/src/pages/performers/PerformerEditUpdate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/performers/PerformerEditUpdate.tsx -------------------------------------------------------------------------------- /frontend/src/pages/performers/PerformerMerge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/performers/PerformerMerge.tsx -------------------------------------------------------------------------------- /frontend/src/pages/performers/Performers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/performers/Performers.tsx -------------------------------------------------------------------------------- /frontend/src/pages/performers/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/performers/components/index.ts -------------------------------------------------------------------------------- /frontend/src/pages/performers/components/performerInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/performers/components/performerInfo.tsx -------------------------------------------------------------------------------- /frontend/src/pages/performers/components/scenePairings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/performers/components/scenePairings.tsx -------------------------------------------------------------------------------- /frontend/src/pages/performers/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/performers/index.tsx -------------------------------------------------------------------------------- /frontend/src/pages/performers/performerForm/ExistingPerformerAlert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/performers/performerForm/ExistingPerformerAlert.tsx -------------------------------------------------------------------------------- /frontend/src/pages/performers/performerForm/PerformerForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/performers/performerForm/PerformerForm.tsx -------------------------------------------------------------------------------- /frontend/src/pages/performers/performerForm/diff.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/performers/performerForm/diff.ts -------------------------------------------------------------------------------- /frontend/src/pages/performers/performerForm/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/performers/performerForm/index.ts -------------------------------------------------------------------------------- /frontend/src/pages/performers/performerForm/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/performers/performerForm/schema.ts -------------------------------------------------------------------------------- /frontend/src/pages/performers/performerForm/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/performers/performerForm/types.ts -------------------------------------------------------------------------------- /frontend/src/pages/performers/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/performers/styles.scss -------------------------------------------------------------------------------- /frontend/src/pages/registerUser/Register.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/registerUser/Register.tsx -------------------------------------------------------------------------------- /frontend/src/pages/registerUser/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./Register"; 2 | -------------------------------------------------------------------------------- /frontend/src/pages/resetPassword/ResetPassword.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/resetPassword/ResetPassword.tsx -------------------------------------------------------------------------------- /frontend/src/pages/resetPassword/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./ResetPassword"; 2 | -------------------------------------------------------------------------------- /frontend/src/pages/scenes/Scene.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/scenes/Scene.tsx -------------------------------------------------------------------------------- /frontend/src/pages/scenes/SceneAdd.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/scenes/SceneAdd.tsx -------------------------------------------------------------------------------- /frontend/src/pages/scenes/SceneDelete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/scenes/SceneDelete.tsx -------------------------------------------------------------------------------- /frontend/src/pages/scenes/SceneEdit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/scenes/SceneEdit.tsx -------------------------------------------------------------------------------- /frontend/src/pages/scenes/SceneEditUpdate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/scenes/SceneEditUpdate.tsx -------------------------------------------------------------------------------- /frontend/src/pages/scenes/Scenes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/scenes/Scenes.tsx -------------------------------------------------------------------------------- /frontend/src/pages/scenes/components/fingerprints.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/scenes/components/fingerprints.tsx -------------------------------------------------------------------------------- /frontend/src/pages/scenes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/scenes/index.tsx -------------------------------------------------------------------------------- /frontend/src/pages/scenes/sceneForm/ExistingSceneAlert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/scenes/sceneForm/ExistingSceneAlert.tsx -------------------------------------------------------------------------------- /frontend/src/pages/scenes/sceneForm/SceneForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/scenes/sceneForm/SceneForm.tsx -------------------------------------------------------------------------------- /frontend/src/pages/scenes/sceneForm/diff.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/scenes/sceneForm/diff.ts -------------------------------------------------------------------------------- /frontend/src/pages/scenes/sceneForm/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/scenes/sceneForm/index.ts -------------------------------------------------------------------------------- /frontend/src/pages/scenes/sceneForm/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/scenes/sceneForm/schema.ts -------------------------------------------------------------------------------- /frontend/src/pages/scenes/sceneForm/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/scenes/sceneForm/styles.scss -------------------------------------------------------------------------------- /frontend/src/pages/scenes/sceneForm/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/scenes/sceneForm/types.ts -------------------------------------------------------------------------------- /frontend/src/pages/scenes/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/scenes/styles.scss -------------------------------------------------------------------------------- /frontend/src/pages/search/Search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/search/Search.tsx -------------------------------------------------------------------------------- /frontend/src/pages/search/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./Search"; 2 | -------------------------------------------------------------------------------- /frontend/src/pages/search/search.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/search/search.scss -------------------------------------------------------------------------------- /frontend/src/pages/sites/Site.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/sites/Site.tsx -------------------------------------------------------------------------------- /frontend/src/pages/sites/SiteAdd.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/sites/SiteAdd.tsx -------------------------------------------------------------------------------- /frontend/src/pages/sites/SiteEdit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/sites/SiteEdit.tsx -------------------------------------------------------------------------------- /frontend/src/pages/sites/Sites.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/sites/Sites.tsx -------------------------------------------------------------------------------- /frontend/src/pages/sites/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/sites/index.tsx -------------------------------------------------------------------------------- /frontend/src/pages/sites/siteForm/SiteForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/sites/siteForm/SiteForm.tsx -------------------------------------------------------------------------------- /frontend/src/pages/sites/siteForm/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./SiteForm"; 2 | -------------------------------------------------------------------------------- /frontend/src/pages/studios/Studio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/studios/Studio.tsx -------------------------------------------------------------------------------- /frontend/src/pages/studios/StudioAdd.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/studios/StudioAdd.tsx -------------------------------------------------------------------------------- /frontend/src/pages/studios/StudioDelete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/studios/StudioDelete.tsx -------------------------------------------------------------------------------- /frontend/src/pages/studios/StudioEdit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/studios/StudioEdit.tsx -------------------------------------------------------------------------------- /frontend/src/pages/studios/StudioEditUpdate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/studios/StudioEditUpdate.tsx -------------------------------------------------------------------------------- /frontend/src/pages/studios/Studios.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/studios/Studios.tsx -------------------------------------------------------------------------------- /frontend/src/pages/studios/components/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./studioPerformers"; 2 | -------------------------------------------------------------------------------- /frontend/src/pages/studios/components/studioPerformers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/studios/components/studioPerformers.tsx -------------------------------------------------------------------------------- /frontend/src/pages/studios/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/studios/index.tsx -------------------------------------------------------------------------------- /frontend/src/pages/studios/studioForm/StudioForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/studios/studioForm/StudioForm.tsx -------------------------------------------------------------------------------- /frontend/src/pages/studios/studioForm/diff.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/studios/studioForm/diff.ts -------------------------------------------------------------------------------- /frontend/src/pages/studios/studioForm/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/studios/studioForm/index.ts -------------------------------------------------------------------------------- /frontend/src/pages/studios/studioForm/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/studios/studioForm/schema.ts -------------------------------------------------------------------------------- /frontend/src/pages/studios/studioForm/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/studios/studioForm/types.ts -------------------------------------------------------------------------------- /frontend/src/pages/studios/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/studios/styles.scss -------------------------------------------------------------------------------- /frontend/src/pages/tags/Tag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/tags/Tag.tsx -------------------------------------------------------------------------------- /frontend/src/pages/tags/TagAdd.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/tags/TagAdd.tsx -------------------------------------------------------------------------------- /frontend/src/pages/tags/TagDelete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/tags/TagDelete.tsx -------------------------------------------------------------------------------- /frontend/src/pages/tags/TagEdit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/tags/TagEdit.tsx -------------------------------------------------------------------------------- /frontend/src/pages/tags/TagEditUpdate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/tags/TagEditUpdate.tsx -------------------------------------------------------------------------------- /frontend/src/pages/tags/TagMerge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/tags/TagMerge.tsx -------------------------------------------------------------------------------- /frontend/src/pages/tags/Tags.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/tags/Tags.tsx -------------------------------------------------------------------------------- /frontend/src/pages/tags/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/tags/index.tsx -------------------------------------------------------------------------------- /frontend/src/pages/tags/tagForm/TagForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/tags/tagForm/TagForm.tsx -------------------------------------------------------------------------------- /frontend/src/pages/tags/tagForm/diff.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/tags/tagForm/diff.ts -------------------------------------------------------------------------------- /frontend/src/pages/tags/tagForm/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/tags/tagForm/index.ts -------------------------------------------------------------------------------- /frontend/src/pages/tags/tagForm/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/tags/tagForm/schema.ts -------------------------------------------------------------------------------- /frontend/src/pages/tags/tagForm/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/tags/tagForm/types.ts -------------------------------------------------------------------------------- /frontend/src/pages/users/GenerateInviteKeyModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/users/GenerateInviteKeyModal.tsx -------------------------------------------------------------------------------- /frontend/src/pages/users/User.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/users/User.tsx -------------------------------------------------------------------------------- /frontend/src/pages/users/UserAdd.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/users/UserAdd.tsx -------------------------------------------------------------------------------- /frontend/src/pages/users/UserConfirmChangeEmail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/users/UserConfirmChangeEmail.tsx -------------------------------------------------------------------------------- /frontend/src/pages/users/UserEdit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/users/UserEdit.tsx -------------------------------------------------------------------------------- /frontend/src/pages/users/UserEditForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/users/UserEditForm.tsx -------------------------------------------------------------------------------- /frontend/src/pages/users/UserEdits.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/users/UserEdits.tsx -------------------------------------------------------------------------------- /frontend/src/pages/users/UserFingerprints.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/users/UserFingerprints.tsx -------------------------------------------------------------------------------- /frontend/src/pages/users/UserFingerprintsList/UserFingerprint.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/users/UserFingerprintsList/UserFingerprint.tsx -------------------------------------------------------------------------------- /frontend/src/pages/users/UserFingerprintsList/UserFingerprintsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/users/UserFingerprintsList/UserFingerprintsList.tsx -------------------------------------------------------------------------------- /frontend/src/pages/users/UserFingerprintsList/UserSceneLine.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/users/UserFingerprintsList/UserSceneLine.tsx -------------------------------------------------------------------------------- /frontend/src/pages/users/UserFingerprintsList/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./UserFingerprintsList"; 2 | -------------------------------------------------------------------------------- /frontend/src/pages/users/UserForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/users/UserForm.tsx -------------------------------------------------------------------------------- /frontend/src/pages/users/UserNotificationPreferences.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/users/UserNotificationPreferences.tsx -------------------------------------------------------------------------------- /frontend/src/pages/users/UserPassword.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/users/UserPassword.tsx -------------------------------------------------------------------------------- /frontend/src/pages/users/UserPasswordForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/users/UserPasswordForm.tsx -------------------------------------------------------------------------------- /frontend/src/pages/users/UserValidateChangeEmail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/users/UserValidateChangeEmail.tsx -------------------------------------------------------------------------------- /frontend/src/pages/users/Users.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/users/Users.tsx -------------------------------------------------------------------------------- /frontend/src/pages/users/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/users/index.tsx -------------------------------------------------------------------------------- /frontend/src/pages/users/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/users/styles.scss -------------------------------------------------------------------------------- /frontend/src/pages/version/Version.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/pages/version/Version.tsx -------------------------------------------------------------------------------- /frontend/src/pages/version/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./Version"; 2 | -------------------------------------------------------------------------------- /frontend/src/styles/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/styles/theme.scss -------------------------------------------------------------------------------- /frontend/src/utils/country.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/utils/country.ts -------------------------------------------------------------------------------- /frontend/src/utils/createClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/utils/createClient.ts -------------------------------------------------------------------------------- /frontend/src/utils/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/utils/data.ts -------------------------------------------------------------------------------- /frontend/src/utils/date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/utils/date.ts -------------------------------------------------------------------------------- /frontend/src/utils/diff.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/utils/diff.ts -------------------------------------------------------------------------------- /frontend/src/utils/edit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/utils/edit.ts -------------------------------------------------------------------------------- /frontend/src/utils/enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/utils/enum.ts -------------------------------------------------------------------------------- /frontend/src/utils/general.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/utils/general.ts -------------------------------------------------------------------------------- /frontend/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/utils/index.ts -------------------------------------------------------------------------------- /frontend/src/utils/intl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/utils/intl.ts -------------------------------------------------------------------------------- /frontend/src/utils/markdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/utils/markdown.tsx -------------------------------------------------------------------------------- /frontend/src/utils/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/utils/route.ts -------------------------------------------------------------------------------- /frontend/src/utils/transforms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/utils/transforms.ts -------------------------------------------------------------------------------- /frontend/src/utils/url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/utils/url.ts -------------------------------------------------------------------------------- /frontend/src/utils/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/src/utils/user.ts -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/tsconfig.json -------------------------------------------------------------------------------- /frontend/vite.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/frontend/vite.config.mjs -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/go.sum -------------------------------------------------------------------------------- /gqlgen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/gqlgen.yml -------------------------------------------------------------------------------- /graphql/schema/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/graphql/schema/schema.graphql -------------------------------------------------------------------------------- /graphql/schema/types/config.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/graphql/schema/types/config.graphql -------------------------------------------------------------------------------- /graphql/schema/types/draft.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/graphql/schema/types/draft.graphql -------------------------------------------------------------------------------- /graphql/schema/types/edit.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/graphql/schema/types/edit.graphql -------------------------------------------------------------------------------- /graphql/schema/types/filter.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/graphql/schema/types/filter.graphql -------------------------------------------------------------------------------- /graphql/schema/types/image.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/graphql/schema/types/image.graphql -------------------------------------------------------------------------------- /graphql/schema/types/misc.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/graphql/schema/types/misc.graphql -------------------------------------------------------------------------------- /graphql/schema/types/notifications.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/graphql/schema/types/notifications.graphql -------------------------------------------------------------------------------- /graphql/schema/types/performer.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/graphql/schema/types/performer.graphql -------------------------------------------------------------------------------- /graphql/schema/types/scene.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/graphql/schema/types/scene.graphql -------------------------------------------------------------------------------- /graphql/schema/types/site.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/graphql/schema/types/site.graphql -------------------------------------------------------------------------------- /graphql/schema/types/studio.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/graphql/schema/types/studio.graphql -------------------------------------------------------------------------------- /graphql/schema/types/tag.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/graphql/schema/types/tag.graphql -------------------------------------------------------------------------------- /graphql/schema/types/user.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/graphql/schema/types/user.graphql -------------------------------------------------------------------------------- /graphql/schema/types/version.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/graphql/schema/types/version.graphql -------------------------------------------------------------------------------- /internal/api/context_keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/api/context_keys.go -------------------------------------------------------------------------------- /internal/api/directives.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/api/directives.go -------------------------------------------------------------------------------- /internal/api/draft_integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/api/draft_integration_test.go -------------------------------------------------------------------------------- /internal/api/edit_integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/api/edit_integration_test.go -------------------------------------------------------------------------------- /internal/api/field_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/api/field_test.go -------------------------------------------------------------------------------- /internal/api/graphql_client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/api/graphql_client_test.go -------------------------------------------------------------------------------- /internal/api/integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/api/integration_test.go -------------------------------------------------------------------------------- /internal/api/loaders.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/api/loaders.go -------------------------------------------------------------------------------- /internal/api/notification_integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/api/notification_integration_test.go -------------------------------------------------------------------------------- /internal/api/performer_edit_integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/api/performer_edit_integration_test.go -------------------------------------------------------------------------------- /internal/api/performer_integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/api/performer_integration_test.go -------------------------------------------------------------------------------- /internal/api/performer_resolver_integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/api/performer_resolver_integration_test.go -------------------------------------------------------------------------------- /internal/api/resolver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/api/resolver.go -------------------------------------------------------------------------------- /internal/api/resolver_model_draft.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/api/resolver_model_draft.go -------------------------------------------------------------------------------- /internal/api/resolver_model_edit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/api/resolver_model_edit.go -------------------------------------------------------------------------------- /internal/api/resolver_model_edit_comment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/api/resolver_model_edit_comment.go -------------------------------------------------------------------------------- /internal/api/resolver_model_edit_vote.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/api/resolver_model_edit_vote.go -------------------------------------------------------------------------------- /internal/api/resolver_model_image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/api/resolver_model_image.go -------------------------------------------------------------------------------- /internal/api/resolver_model_notification.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/api/resolver_model_notification.go -------------------------------------------------------------------------------- /internal/api/resolver_model_performer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/api/resolver_model_performer.go -------------------------------------------------------------------------------- /internal/api/resolver_model_performer_draft.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/api/resolver_model_performer_draft.go -------------------------------------------------------------------------------- /internal/api/resolver_model_performer_edit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/api/resolver_model_performer_edit.go -------------------------------------------------------------------------------- /internal/api/resolver_model_scene.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/api/resolver_model_scene.go -------------------------------------------------------------------------------- /internal/api/resolver_model_scene_draft.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/api/resolver_model_scene_draft.go -------------------------------------------------------------------------------- /internal/api/resolver_model_scene_edit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/api/resolver_model_scene_edit.go -------------------------------------------------------------------------------- /internal/api/resolver_model_site.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/api/resolver_model_site.go -------------------------------------------------------------------------------- /internal/api/resolver_model_studio.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/api/resolver_model_studio.go -------------------------------------------------------------------------------- /internal/api/resolver_model_studio_edit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/api/resolver_model_studio_edit.go -------------------------------------------------------------------------------- /internal/api/resolver_model_tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/api/resolver_model_tag.go -------------------------------------------------------------------------------- /internal/api/resolver_model_tag_category.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/api/resolver_model_tag_category.go -------------------------------------------------------------------------------- /internal/api/resolver_model_tag_edit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/api/resolver_model_tag_edit.go -------------------------------------------------------------------------------- /internal/api/resolver_model_url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/api/resolver_model_url.go -------------------------------------------------------------------------------- /internal/api/resolver_model_user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/api/resolver_model_user.go -------------------------------------------------------------------------------- /internal/api/resolver_mutation_draft.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/api/resolver_mutation_draft.go -------------------------------------------------------------------------------- /internal/api/resolver_mutation_edit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/api/resolver_mutation_edit.go -------------------------------------------------------------------------------- /internal/api/resolver_mutation_image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/api/resolver_mutation_image.go -------------------------------------------------------------------------------- /internal/api/resolver_mutation_notifications.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/api/resolver_mutation_notifications.go -------------------------------------------------------------------------------- /internal/api/resolver_mutation_performer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/api/resolver_mutation_performer.go -------------------------------------------------------------------------------- /internal/api/resolver_mutation_scene.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/api/resolver_mutation_scene.go -------------------------------------------------------------------------------- /internal/api/resolver_mutation_site.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/api/resolver_mutation_site.go -------------------------------------------------------------------------------- /internal/api/resolver_mutation_studio.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/api/resolver_mutation_studio.go -------------------------------------------------------------------------------- /internal/api/resolver_mutation_tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/api/resolver_mutation_tag.go -------------------------------------------------------------------------------- /internal/api/resolver_mutation_tag_category.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/api/resolver_mutation_tag_category.go -------------------------------------------------------------------------------- /internal/api/resolver_mutation_user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/api/resolver_mutation_user.go -------------------------------------------------------------------------------- /internal/api/resolver_query_draft.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/api/resolver_query_draft.go -------------------------------------------------------------------------------- /internal/api/resolver_query_edit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/api/resolver_query_edit.go -------------------------------------------------------------------------------- /internal/api/resolver_query_notifications.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/api/resolver_query_notifications.go -------------------------------------------------------------------------------- /internal/api/resolver_query_performer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/api/resolver_query_performer.go -------------------------------------------------------------------------------- /internal/api/resolver_query_scene.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/api/resolver_query_scene.go -------------------------------------------------------------------------------- /internal/api/resolver_query_site.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/api/resolver_query_site.go -------------------------------------------------------------------------------- /internal/api/resolver_query_studio.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/api/resolver_query_studio.go -------------------------------------------------------------------------------- /internal/api/resolver_query_tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/api/resolver_query_tag.go -------------------------------------------------------------------------------- /internal/api/resolver_query_tag_category.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/api/resolver_query_tag_category.go -------------------------------------------------------------------------------- /internal/api/resolver_query_user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/api/resolver_query_user.go -------------------------------------------------------------------------------- /internal/api/routes_image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/api/routes_image.go -------------------------------------------------------------------------------- /internal/api/routes_root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/api/routes_root.go -------------------------------------------------------------------------------- /internal/api/scene_edit_integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/api/scene_edit_integration_test.go -------------------------------------------------------------------------------- /internal/api/scene_integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/api/scene_integration_test.go -------------------------------------------------------------------------------- /internal/api/search_integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/api/search_integration_test.go -------------------------------------------------------------------------------- /internal/api/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/api/server.go -------------------------------------------------------------------------------- /internal/api/session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/api/session.go -------------------------------------------------------------------------------- /internal/api/site_integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/api/site_integration_test.go -------------------------------------------------------------------------------- /internal/api/studio_edit_integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/api/studio_edit_integration_test.go -------------------------------------------------------------------------------- /internal/api/studio_integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/api/studio_integration_test.go -------------------------------------------------------------------------------- /internal/api/tag_category_integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/api/tag_category_integration_test.go -------------------------------------------------------------------------------- /internal/api/tag_edit_integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/api/tag_edit_integration_test.go -------------------------------------------------------------------------------- /internal/api/tag_integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/api/tag_integration_test.go -------------------------------------------------------------------------------- /internal/api/user_integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/api/user_integration_test.go -------------------------------------------------------------------------------- /internal/api/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/api/utils.go -------------------------------------------------------------------------------- /internal/auth/authorization.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/auth/authorization.go -------------------------------------------------------------------------------- /internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/config/config.go -------------------------------------------------------------------------------- /internal/config/paths.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/config/paths.go -------------------------------------------------------------------------------- /internal/converter/converter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/converter/converter.go -------------------------------------------------------------------------------- /internal/converter/gen/extensions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/converter/gen/extensions.go -------------------------------------------------------------------------------- /internal/converter/gen/generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/converter/gen/generated.go -------------------------------------------------------------------------------- /internal/converter/gen/interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/converter/gen/interfaces.go -------------------------------------------------------------------------------- /internal/cron/cron.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/cron/cron.go -------------------------------------------------------------------------------- /internal/database/database.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/database/database.go -------------------------------------------------------------------------------- /internal/database/migrations/postgres/01_initial.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/database/migrations/postgres/01_initial.down.sql -------------------------------------------------------------------------------- /internal/database/migrations/postgres/01_initial.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/database/migrations/postgres/01_initial.up.sql -------------------------------------------------------------------------------- /internal/database/migrations/postgres/02_create_search.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/database/migrations/postgres/02_create_search.down.sql -------------------------------------------------------------------------------- /internal/database/migrations/postgres/02_create_search.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/database/migrations/postgres/02_create_search.up.sql -------------------------------------------------------------------------------- /internal/database/migrations/postgres/03_misc.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/database/migrations/postgres/03_misc.up.sql -------------------------------------------------------------------------------- /internal/database/migrations/postgres/04_image_tables.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/database/migrations/postgres/04_image_tables.up.sql -------------------------------------------------------------------------------- /internal/database/migrations/postgres/05_edits.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/database/migrations/postgres/05_edits.up.sql -------------------------------------------------------------------------------- /internal/database/migrations/postgres/06_deletion_and_redirects.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/database/migrations/postgres/06_deletion_and_redirects.up.sql -------------------------------------------------------------------------------- /internal/database/migrations/postgres/07_optimization_indexes.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/database/migrations/postgres/07_optimization_indexes.up.sql -------------------------------------------------------------------------------- /internal/database/migrations/postgres/08_user_invite.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/database/migrations/postgres/08_user_invite.up.sql -------------------------------------------------------------------------------- /internal/database/migrations/postgres/09_image_data.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/database/migrations/postgres/09_image_data.up.sql -------------------------------------------------------------------------------- /internal/database/migrations/postgres/10_tag_categories.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/database/migrations/postgres/10_tag_categories.up.sql -------------------------------------------------------------------------------- /internal/database/migrations/postgres/11_image_constraints.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/database/migrations/postgres/11_image_constraints.up.sql -------------------------------------------------------------------------------- /internal/database/migrations/postgres/12_fix_performer_trigger.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/database/migrations/postgres/12_fix_performer_trigger.up.sql -------------------------------------------------------------------------------- /internal/database/migrations/postgres/13_sort_indexes.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/database/migrations/postgres/13_sort_indexes.up.sql -------------------------------------------------------------------------------- /internal/database/migrations/postgres/14_phash_distance_search.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/database/migrations/postgres/14_phash_distance_search.up.sql -------------------------------------------------------------------------------- /internal/database/migrations/postgres/15_scene_fingerprint_submissions.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/database/migrations/postgres/15_scene_fingerprint_submissions.up.sql -------------------------------------------------------------------------------- /internal/database/migrations/postgres/16_fix_scene_update_trigger.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/database/migrations/postgres/16_fix_scene_update_trigger.up.sql -------------------------------------------------------------------------------- /internal/database/migrations/postgres/17_edit_votes.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/database/migrations/postgres/17_edit_votes.up.sql -------------------------------------------------------------------------------- /internal/database/migrations/postgres/18_fingerprint_user.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/database/migrations/postgres/18_fingerprint_user.up.sql -------------------------------------------------------------------------------- /internal/database/migrations/postgres/19_scene_created_index.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/database/migrations/postgres/19_scene_created_index.up.sql -------------------------------------------------------------------------------- /internal/database/migrations/postgres/20_edit_constraints.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/database/migrations/postgres/20_edit_constraints.up.sql -------------------------------------------------------------------------------- /internal/database/migrations/postgres/21_site_urls.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/database/migrations/postgres/21_site_urls.up.sql -------------------------------------------------------------------------------- /internal/database/migrations/postgres/22_performer_search_indexes.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/database/migrations/postgres/22_performer_search_indexes.up.sql -------------------------------------------------------------------------------- /internal/database/migrations/postgres/23_favorites.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/database/migrations/postgres/23_favorites.up.sql -------------------------------------------------------------------------------- /internal/database/migrations/postgres/24_drafts.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/database/migrations/postgres/24_drafts.up.sql -------------------------------------------------------------------------------- /internal/database/migrations/postgres/25_scene_codes.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/database/migrations/postgres/25_scene_codes.up.sql -------------------------------------------------------------------------------- /internal/database/migrations/postgres/26_scene_partial_date.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE "scenes" 2 | DROP COLUMN "date_accuracy"; 3 | -------------------------------------------------------------------------------- /internal/database/migrations/postgres/26_scene_partial_date.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/database/migrations/postgres/26_scene_partial_date.up.sql -------------------------------------------------------------------------------- /internal/database/migrations/postgres/27_edit_closed_at.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/database/migrations/postgres/27_edit_closed_at.up.sql -------------------------------------------------------------------------------- /internal/database/migrations/postgres/28_studio_favorite_index.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/database/migrations/postgres/28_studio_favorite_index.up.sql -------------------------------------------------------------------------------- /internal/database/migrations/postgres/29_scene_edit_fingerprint_index.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/database/migrations/postgres/29_scene_edit_fingerprint_index.up.sql -------------------------------------------------------------------------------- /internal/database/migrations/postgres/30_edit_bot.up.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE "edits" 2 | ADD COLUMN "bot" BOOLEAN NOT NULL DEFAULT False; 3 | -------------------------------------------------------------------------------- /internal/database/migrations/postgres/31_scenes_deleted_idx.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/database/migrations/postgres/31_scenes_deleted_idx.up.sql -------------------------------------------------------------------------------- /internal/database/migrations/postgres/32_edit_indexes.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/database/migrations/postgres/32_edit_indexes.up.sql -------------------------------------------------------------------------------- /internal/database/migrations/postgres/33_invite_key_uses.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/database/migrations/postgres/33_invite_key_uses.up.sql -------------------------------------------------------------------------------- /internal/database/migrations/postgres/34_fingerprints.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/database/migrations/postgres/34_fingerprints.up.sql -------------------------------------------------------------------------------- /internal/database/migrations/postgres/35_websearch.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/database/migrations/postgres/35_websearch.up.sql -------------------------------------------------------------------------------- /internal/database/migrations/postgres/36_drop_unique_invite.up.sql: -------------------------------------------------------------------------------- 1 | DROP INDEX IF EXISTS "pending_activation_invite_key_idx"; 2 | -------------------------------------------------------------------------------- /internal/database/migrations/postgres/37_tokens.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/database/migrations/postgres/37_tokens.up.sql -------------------------------------------------------------------------------- /internal/database/migrations/postgres/38_scenes_studio_id_index.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/database/migrations/postgres/38_scenes_studio_id_index.up.sql -------------------------------------------------------------------------------- /internal/database/migrations/postgres/39_edits_updates.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/database/migrations/postgres/39_edits_updates.up.sql -------------------------------------------------------------------------------- /internal/database/migrations/postgres/40_fingerprint_vote.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/database/migrations/postgres/40_fingerprint_vote.up.sql -------------------------------------------------------------------------------- /internal/database/migrations/postgres/41_notifications.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/database/migrations/postgres/41_notifications.up.sql -------------------------------------------------------------------------------- /internal/database/migrations/postgres/42_date_columns.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/database/migrations/postgres/42_date_columns.up.sql -------------------------------------------------------------------------------- /internal/database/migrations/postgres/43_studio_aliases.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/database/migrations/postgres/43_studio_aliases.up.sql -------------------------------------------------------------------------------- /internal/database/migrations/postgres/44_performer_death_date.up.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE "performers" ADD COLUMN "deathdate" TEXT; 2 | -------------------------------------------------------------------------------- /internal/database/migrations/postgres/45_scene_production_date.up.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE "scenes" ADD COLUMN "production_date" TEXT; 2 | -------------------------------------------------------------------------------- /internal/database/migrations/postgres/46_update_default_notifications.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/database/migrations/postgres/46_update_default_notifications.up.sql -------------------------------------------------------------------------------- /internal/database/migrations/postgres/47_favorite_unique.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/database/migrations/postgres/47_favorite_unique.up.sql -------------------------------------------------------------------------------- /internal/database/migrations/postgres/48_fingerprinted_scene_edit_notification.up.sql: -------------------------------------------------------------------------------- 1 | ALTER TYPE notification_type ADD VALUE 'FINGERPRINTED_SCENE_EDIT'; 2 | -------------------------------------------------------------------------------- /internal/database/migrations/postgres/49_entity_search_lower_idx.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/database/migrations/postgres/49_entity_search_lower_idx.up.sql -------------------------------------------------------------------------------- /internal/database/migrations/postgres/50_rename_url_siteid.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/database/migrations/postgres/50_rename_url_siteid.up.sql -------------------------------------------------------------------------------- /internal/database/testutil/testutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/database/testutil/testutil.go -------------------------------------------------------------------------------- /internal/dataloader/bodymodificationsloader_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/dataloader/bodymodificationsloader_gen.go -------------------------------------------------------------------------------- /internal/dataloader/boolsloader_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/dataloader/boolsloader_gen.go -------------------------------------------------------------------------------- /internal/dataloader/editcommentloader_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/dataloader/editcommentloader_gen.go -------------------------------------------------------------------------------- /internal/dataloader/editloader_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/dataloader/editloader_gen.go -------------------------------------------------------------------------------- /internal/dataloader/fingerprintsloader_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/dataloader/fingerprintsloader_gen.go -------------------------------------------------------------------------------- /internal/dataloader/imageloader_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/dataloader/imageloader_gen.go -------------------------------------------------------------------------------- /internal/dataloader/loaders.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/dataloader/loaders.go -------------------------------------------------------------------------------- /internal/dataloader/performerloader_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/dataloader/performerloader_gen.go -------------------------------------------------------------------------------- /internal/dataloader/sceneappearancesloader_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/dataloader/sceneappearancesloader_gen.go -------------------------------------------------------------------------------- /internal/dataloader/sceneloader_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/dataloader/sceneloader_gen.go -------------------------------------------------------------------------------- /internal/dataloader/siteloader_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/dataloader/siteloader_gen.go -------------------------------------------------------------------------------- /internal/dataloader/stringsloader_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/dataloader/stringsloader_gen.go -------------------------------------------------------------------------------- /internal/dataloader/studioloader_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/dataloader/studioloader_gen.go -------------------------------------------------------------------------------- /internal/dataloader/submittedfingerprintsloader_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/dataloader/submittedfingerprintsloader_gen.go -------------------------------------------------------------------------------- /internal/dataloader/tagcategoryloader_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/dataloader/tagcategoryloader_gen.go -------------------------------------------------------------------------------- /internal/dataloader/tagloader_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/dataloader/tagloader_gen.go -------------------------------------------------------------------------------- /internal/dataloader/urlloader_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/dataloader/urlloader_gen.go -------------------------------------------------------------------------------- /internal/dataloader/uuidsloader_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/dataloader/uuidsloader_gen.go -------------------------------------------------------------------------------- /internal/email/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/email/manager.go -------------------------------------------------------------------------------- /internal/email/templates/email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/email/templates/email.html -------------------------------------------------------------------------------- /internal/email/templates/email.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/email/templates/email.txt -------------------------------------------------------------------------------- /internal/email/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/email/user.go -------------------------------------------------------------------------------- /internal/image/cache/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/image/cache/cache.go -------------------------------------------------------------------------------- /internal/image/resize_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/image/resize_unix.go -------------------------------------------------------------------------------- /internal/image/resize_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/image/resize_windows.go -------------------------------------------------------------------------------- /internal/image/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/image/sort.go -------------------------------------------------------------------------------- /internal/models/assign/assign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/models/assign/assign.go -------------------------------------------------------------------------------- /internal/models/extension_criterion_input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/models/extension_criterion_input.go -------------------------------------------------------------------------------- /internal/models/extension_edit_details.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/models/extension_edit_details.go -------------------------------------------------------------------------------- /internal/models/extension_edit_details_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/models/extension_edit_details_test.go -------------------------------------------------------------------------------- /internal/models/extension_role_enum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/models/extension_role_enum.go -------------------------------------------------------------------------------- /internal/models/generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/models/generate.go -------------------------------------------------------------------------------- /internal/models/generated_exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/models/generated_exec.go -------------------------------------------------------------------------------- /internal/models/generated_models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/models/generated_models.go -------------------------------------------------------------------------------- /internal/models/model_draft.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/models/model_draft.go -------------------------------------------------------------------------------- /internal/models/model_edit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/models/model_edit.go -------------------------------------------------------------------------------- /internal/models/model_image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/models/model_image.go -------------------------------------------------------------------------------- /internal/models/model_invite_key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/models/model_invite_key.go -------------------------------------------------------------------------------- /internal/models/model_notification.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/models/model_notification.go -------------------------------------------------------------------------------- /internal/models/model_performer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/models/model_performer.go -------------------------------------------------------------------------------- /internal/models/model_scene.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/models/model_scene.go -------------------------------------------------------------------------------- /internal/models/model_site.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/models/model_site.go -------------------------------------------------------------------------------- /internal/models/model_studio.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/models/model_studio.go -------------------------------------------------------------------------------- /internal/models/model_tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/models/model_tag.go -------------------------------------------------------------------------------- /internal/models/model_tag_category.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/models/model_tag_category.go -------------------------------------------------------------------------------- /internal/models/model_user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/models/model_user.go -------------------------------------------------------------------------------- /internal/models/model_user_tokens.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/models/model_user_tokens.go -------------------------------------------------------------------------------- /internal/models/scalars.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/models/scalars.go -------------------------------------------------------------------------------- /internal/models/translate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/models/translate.go -------------------------------------------------------------------------------- /internal/models/url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/models/url.go -------------------------------------------------------------------------------- /internal/models/validator/validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/models/validator/validator.go -------------------------------------------------------------------------------- /internal/queries/copyfrom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/queries/copyfrom.go -------------------------------------------------------------------------------- /internal/queries/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/queries/db.go -------------------------------------------------------------------------------- /internal/queries/draft.sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/queries/draft.sql.go -------------------------------------------------------------------------------- /internal/queries/edit.sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/queries/edit.sql.go -------------------------------------------------------------------------------- /internal/queries/fingerprint.sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/queries/fingerprint.sql.go -------------------------------------------------------------------------------- /internal/queries/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/queries/helpers.go -------------------------------------------------------------------------------- /internal/queries/image.sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/queries/image.sql.go -------------------------------------------------------------------------------- /internal/queries/invite_key.sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/queries/invite_key.sql.go -------------------------------------------------------------------------------- /internal/queries/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/queries/models.go -------------------------------------------------------------------------------- /internal/queries/notification.sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/queries/notification.sql.go -------------------------------------------------------------------------------- /internal/queries/performer.sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/queries/performer.sql.go -------------------------------------------------------------------------------- /internal/queries/querier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/queries/querier.go -------------------------------------------------------------------------------- /internal/queries/scene.sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/queries/scene.sql.go -------------------------------------------------------------------------------- /internal/queries/site.sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/queries/site.sql.go -------------------------------------------------------------------------------- /internal/queries/sql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/queries/sql/README.md -------------------------------------------------------------------------------- /internal/queries/sql/draft.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/queries/sql/draft.sql -------------------------------------------------------------------------------- /internal/queries/sql/edit.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/queries/sql/edit.sql -------------------------------------------------------------------------------- /internal/queries/sql/fingerprint.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/queries/sql/fingerprint.sql -------------------------------------------------------------------------------- /internal/queries/sql/image.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/queries/sql/image.sql -------------------------------------------------------------------------------- /internal/queries/sql/invite_key.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/queries/sql/invite_key.sql -------------------------------------------------------------------------------- /internal/queries/sql/notification.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/queries/sql/notification.sql -------------------------------------------------------------------------------- /internal/queries/sql/performer.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/queries/sql/performer.sql -------------------------------------------------------------------------------- /internal/queries/sql/scene.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/queries/sql/scene.sql -------------------------------------------------------------------------------- /internal/queries/sql/site.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/queries/sql/site.sql -------------------------------------------------------------------------------- /internal/queries/sql/studio.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/queries/sql/studio.sql -------------------------------------------------------------------------------- /internal/queries/sql/tag.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/queries/sql/tag.sql -------------------------------------------------------------------------------- /internal/queries/sql/tag_category.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/queries/sql/tag_category.sql -------------------------------------------------------------------------------- /internal/queries/sql/user.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/queries/sql/user.sql -------------------------------------------------------------------------------- /internal/queries/sql/user_token.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/queries/sql/user_token.sql -------------------------------------------------------------------------------- /internal/queries/studio.sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/queries/studio.sql.go -------------------------------------------------------------------------------- /internal/queries/tag.sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/queries/tag.sql.go -------------------------------------------------------------------------------- /internal/queries/tag_category.sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/queries/tag_category.sql.go -------------------------------------------------------------------------------- /internal/queries/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/queries/types.go -------------------------------------------------------------------------------- /internal/queries/user.sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/queries/user.sql.go -------------------------------------------------------------------------------- /internal/queries/user_token.sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/queries/user_token.sql.go -------------------------------------------------------------------------------- /internal/service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/service/README.md -------------------------------------------------------------------------------- /internal/service/draft/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/service/draft/service.go -------------------------------------------------------------------------------- /internal/service/edit/edit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/service/edit/edit.go -------------------------------------------------------------------------------- /internal/service/edit/modbot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/service/edit/modbot.go -------------------------------------------------------------------------------- /internal/service/edit/performer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/service/edit/performer.go -------------------------------------------------------------------------------- /internal/service/edit/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/service/edit/query.go -------------------------------------------------------------------------------- /internal/service/edit/scene.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/service/edit/scene.go -------------------------------------------------------------------------------- /internal/service/edit/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/service/edit/service.go -------------------------------------------------------------------------------- /internal/service/edit/studio.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/service/edit/studio.go -------------------------------------------------------------------------------- /internal/service/edit/tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/service/edit/tag.go -------------------------------------------------------------------------------- /internal/service/edit/validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/service/edit/validate.go -------------------------------------------------------------------------------- /internal/service/errutil/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/service/errutil/errors.go -------------------------------------------------------------------------------- /internal/service/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/service/factory.go -------------------------------------------------------------------------------- /internal/service/image/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/service/image/service.go -------------------------------------------------------------------------------- /internal/service/image/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/service/image/utils.go -------------------------------------------------------------------------------- /internal/service/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/service/interface.go -------------------------------------------------------------------------------- /internal/service/invite/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/service/invite/service.go -------------------------------------------------------------------------------- /internal/service/notification/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/service/notification/service.go -------------------------------------------------------------------------------- /internal/service/performer/joins.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/service/performer/joins.go -------------------------------------------------------------------------------- /internal/service/performer/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/service/performer/query.go -------------------------------------------------------------------------------- /internal/service/performer/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/service/performer/service.go -------------------------------------------------------------------------------- /internal/service/query/criterion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/service/query/criterion.go -------------------------------------------------------------------------------- /internal/service/query/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/service/query/helpers.go -------------------------------------------------------------------------------- /internal/service/scene/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/service/scene/query.go -------------------------------------------------------------------------------- /internal/service/scene/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/service/scene/service.go -------------------------------------------------------------------------------- /internal/service/site/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/service/site/query.go -------------------------------------------------------------------------------- /internal/service/site/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/service/site/service.go -------------------------------------------------------------------------------- /internal/service/studio/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/service/studio/query.go -------------------------------------------------------------------------------- /internal/service/studio/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/service/studio/service.go -------------------------------------------------------------------------------- /internal/service/tag/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/service/tag/query.go -------------------------------------------------------------------------------- /internal/service/tag/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/service/tag/service.go -------------------------------------------------------------------------------- /internal/service/user/activation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/service/user/activation.go -------------------------------------------------------------------------------- /internal/service/user/apikey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/service/user/apikey.go -------------------------------------------------------------------------------- /internal/service/user/invite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/service/user/invite.go -------------------------------------------------------------------------------- /internal/service/user/joins.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/service/user/joins.go -------------------------------------------------------------------------------- /internal/service/user/password.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/service/user/password.go -------------------------------------------------------------------------------- /internal/service/user/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/service/user/query.go -------------------------------------------------------------------------------- /internal/service/user/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/service/user/service.go -------------------------------------------------------------------------------- /internal/service/user/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/service/user/token.go -------------------------------------------------------------------------------- /internal/service/user/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/service/user/user.go -------------------------------------------------------------------------------- /internal/service/user/validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/service/user/validate.go -------------------------------------------------------------------------------- /internal/service/usertoken/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/service/usertoken/service.go -------------------------------------------------------------------------------- /internal/storage/favicon.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/storage/favicon.go -------------------------------------------------------------------------------- /internal/storage/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/storage/file.go -------------------------------------------------------------------------------- /internal/storage/image_backend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/storage/image_backend.go -------------------------------------------------------------------------------- /internal/storage/s3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/internal/storage/s3.go -------------------------------------------------------------------------------- /pkg/logger/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/pkg/logger/logger.go -------------------------------------------------------------------------------- /pkg/logger/otel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/pkg/logger/otel.go -------------------------------------------------------------------------------- /pkg/logger/progress_formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/pkg/logger/progress_formatter.go -------------------------------------------------------------------------------- /pkg/utils/arguments.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/pkg/utils/arguments.go -------------------------------------------------------------------------------- /pkg/utils/crypto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/pkg/utils/crypto.go -------------------------------------------------------------------------------- /pkg/utils/date.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/pkg/utils/date.go -------------------------------------------------------------------------------- /pkg/utils/enum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/pkg/utils/enum.go -------------------------------------------------------------------------------- /pkg/utils/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/pkg/utils/file.go -------------------------------------------------------------------------------- /pkg/utils/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/pkg/utils/json.go -------------------------------------------------------------------------------- /pkg/utils/password_blacklist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/pkg/utils/password_blacklist.go -------------------------------------------------------------------------------- /pkg/utils/slice_compare.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/pkg/utils/slice_compare.go -------------------------------------------------------------------------------- /pkg/utils/slice_compare_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/pkg/utils/slice_compare_test.go -------------------------------------------------------------------------------- /scripts/getDate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/scripts/getDate.go -------------------------------------------------------------------------------- /sqlc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/stash-box/HEAD/sqlc.yaml --------------------------------------------------------------------------------