Merge remote-tracking branch 'parent/main' into upstream-20241209

This commit is contained in:
KMY 2024-12-09 17:49:49 +09:00
commit 6b6f145633
28 changed files with 571 additions and 324 deletions

40
config/routes/web_app.rb Normal file
View file

@ -0,0 +1,40 @@
# frozen_string_literal: true
# Paths handled by the React application, which do not:
# - Require indexing
# - Have alternative format representations
%w(
/antennas/(*any)
/blocks
/bookmarks
/bookmark_categories/(*any)
/circles/(*any)
/conversations
/deck/(*any)
/directory
/domain_blocks
/emoji_reactions
/explore/(*any)
/favourites
/follow_requests
/followed_tags
/getting-started
/home
/keyboard-shortcuts
/links/(*any)
/lists/(*any)
/mutes
/notifications_v2/(*any)
/notifications/(*any)
/pinned
/public
/public/local
/public/local/fixed
/public/remote
/publish
/reaction_deck
/search
/start/(*any)
/statuses/(*any)
).each { |path| get path, to: 'home#index' }