Merge branch 'main' into fizzy-do-prompts

* main: (57 commits)
  Untenanted access in authenticated controllers should request auth
  dep: bundle update
  dep: update Rails
  dep: bump AR::Tenanted
  Clean up the cable meta tag
  Fix activity feed pagination to fetch on demand
  Create a "published" event if a card is created published
  Scatter Honcho seeds over a 30 day period
  Fix the PWA manifest to use slugged URLs
  Collection publication edits render a turbo frame
  Collection workflow edits render a turbo frame
  Collection entropy config edits render a turbo frame
  Use automatic sizing where supported
  Introduce a separate controller for collection entropy config
  Add `card_id` to index
  Move to scope and inline method
  Prefer modern syntax
  Fix that stage should be visible above card background
  Indicate opens menu
  Hide dialog targets from screen readers when closed
  ...

# Conflicts:
#	db/schema.rb
#	db/schema_cache.yml
This commit is contained in:
Jorge Manrubia
2025-07-03 16:11:00 +02:00
98 changed files with 991 additions and 402 deletions
+2 -1
View File
@@ -1,7 +1,7 @@
class Command::Parser
attr_reader :context
delegate :user, :cards, :filter, to: :context
delegate :user, :cards, :filter, :script_name, to: :context
def initialize(context)
@context = context
@@ -12,6 +12,7 @@ class Command::Parser
command.user = user
command.line ||= as_plain_text(string)
command.context ||= context
command.default_url_options[:script_name] = script_name
end
end