1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-08-02 20:15:22 +02:00

Enable bulk editing of transactions (#846)

This commit is contained in:
Zach Gollwitzer 2024-06-07 18:59:46 -04:00 committed by GitHub
parent d3f9be15f1
commit a681e73fea
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 136 additions and 14 deletions

View file

@ -3,6 +3,22 @@ en:
transactions:
bulk_delete:
success: "%{count} transactions deleted"
bulk_edit:
additional: Additional
cancel: Cancel
category: Category
date: Date
exclude_subtitle: This excludes the transaction from any in-app features or
analytics.
exclude_title: Exclude transaction
merchant: Merchant
note: Notes
note_placeholder: Enter a note that will be applied to selected transactions
overview: Overview
save: Save
select_category: Select a category
select_merchant: Select a merchant
settings: Settings
bulk_update:
failure: Could not update transactions
success: "%{count} transactions updated"

View file

@ -44,6 +44,7 @@ Rails.application.routes.draw do
resources :transactions do
collection do
post "bulk_delete"
get "bulk_edit"
post "bulk_update"
scope module: :transactions, as: :transaction do