mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-22 22:59:39 +02:00
* Clean up env example files * Fix duplicate category creations * Fix duplicate tag and merchant creation * Add initial valuation to imported accounts * Add upgrade modal prompt * Don't hide content on billing page * Add temporary session for new customers * Lint fixes * Fix unused translations * Fix system tests
46 lines
961 B
Ruby
46 lines
961 B
Ruby
class MerchantsController < ApplicationController
|
|
layout :with_sidebar
|
|
|
|
before_action :set_merchant, only: %i[edit update destroy]
|
|
|
|
def index
|
|
@merchants = Current.family.merchants.alphabetically
|
|
end
|
|
|
|
def new
|
|
@merchant = Merchant.new
|
|
end
|
|
|
|
def create
|
|
@merchant = Current.family.merchants.new(merchant_params)
|
|
|
|
if @merchant.save
|
|
redirect_to merchants_path, notice: t(".success")
|
|
else
|
|
redirect_to merchants_path, alert: t(".error", error: @merchant.errors.full_messages.to_sentence)
|
|
end
|
|
end
|
|
|
|
def edit
|
|
end
|
|
|
|
def update
|
|
@merchant.update!(merchant_params)
|
|
redirect_to merchants_path, notice: t(".success")
|
|
end
|
|
|
|
def destroy
|
|
@merchant.destroy!
|
|
redirect_to merchants_path, notice: t(".success")
|
|
end
|
|
|
|
private
|
|
|
|
def set_merchant
|
|
@merchant = Current.family.merchants.find(params[:id])
|
|
end
|
|
|
|
def merchant_params
|
|
params.require(:merchant).permit(:name, :color)
|
|
end
|
|
end
|