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:
parent
d3f9be15f1
commit
a681e73fea
7 changed files with 136 additions and 14 deletions
|
@ -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"
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue