Merge branch 'main' into feature/llm-cache-reset

Signed-off-by: Juan José Mata <juanjo.mata@gmail.com>
This commit is contained in:
Juan José Mata
2026-01-27 08:50:01 +01:00
committed by GitHub
139 changed files with 5125 additions and 605 deletions

View File

@@ -231,7 +231,11 @@ Rails.application.routes.draw do
post :reset_security
end
end
resources :trades, only: %i[show new create update destroy]
resources :trades, only: %i[show new create update destroy] do
member do
post :unlock
end
end
resources :valuations, only: %i[show new create update destroy] do
post :confirm_create, on: :collection
post :confirm_update, on: :member
@@ -257,6 +261,7 @@ Rails.application.routes.draw do
post :mark_as_recurring
post :merge_duplicate
post :dismiss_duplicate
post :unlock
end
end