Error in client under Rails 8
ArgumentError: :only and :except must include only [:index, :create, :new, :show, :update, :destroy, :edit], but also included [:feed] (ArgumentError)
I suspect this is because in routes.rb, resources :activities, only: [:index, :feed]
implicitly adds feed to the resource, but that's perhaps not allowed implicitly any more? So it needs adding explicitly.