mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-21 06:09:38 +02:00
25 lines
606 B
Ruby
25 lines
606 B
Ruby
|
class Import::RowsController < ApplicationController
|
||
|
before_action :set_import_row
|
||
|
|
||
|
def update
|
||
|
@row.assign_attributes(row_params)
|
||
|
@row.save!(validate: false)
|
||
|
@row.sync_mappings
|
||
|
|
||
|
redirect_to import_row_path(@row.import, @row)
|
||
|
end
|
||
|
|
||
|
def show
|
||
|
end
|
||
|
|
||
|
private
|
||
|
def row_params
|
||
|
params.require(:import_row).permit(:type, :account, :date, :qty, :ticker, :price, :amount, :currency, :name, :category, :tags, :entity_type, :notes)
|
||
|
end
|
||
|
|
||
|
def set_import_row
|
||
|
@import = Current.family.imports.find(params[:import_id])
|
||
|
@row = @import.rows.find(params[:id])
|
||
|
end
|
||
|
end
|