mirror of
https://github.com/we-promise/sure.git
synced 2026-04-19 12:04:08 +00:00
Basic transaction categories CRUD actions (inline) (#601)
* Fix dropdown issues and add dummy transaction category modal * Minor namings tweaks * Add search type * Use new menu controller * Complete basic transaction category inline CRUD actions * Fix lint error --------- Co-authored-by: Jakub Kottnauer <jk@jakubkottnauer.com>
This commit is contained in:
34
app/controllers/transactions/categories_controller.rb
Normal file
34
app/controllers/transactions/categories_controller.rb
Normal file
@@ -0,0 +1,34 @@
|
||||
class Transactions::CategoriesController < ApplicationController
|
||||
before_action :set_category, only: [ :update, :destroy ]
|
||||
|
||||
def create
|
||||
if Current.family.transaction_categories.create(category_params)
|
||||
redirect_to transactions_path, notice: t(".success")
|
||||
else
|
||||
render transactions_path, status: :unprocessable_entity, notice: t(".error")
|
||||
end
|
||||
end
|
||||
|
||||
def update
|
||||
if @category.update(category_params)
|
||||
redirect_to transactions_path, notice: t(".success")
|
||||
else
|
||||
render transactions_path, status: :unprocessable_entity, notice: t(".error")
|
||||
end
|
||||
end
|
||||
|
||||
def destroy
|
||||
@category.destroy!
|
||||
redirect_to transactions_path, notice: t(".success")
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
def set_category
|
||||
@category = Current.family.transaction_categories.find(params[:id])
|
||||
end
|
||||
|
||||
def category_params
|
||||
params.require(:transaction_category).permit(:name, :name, :color)
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user