mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-19 13:19: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
11 lines
386 B
Ruby
11 lines
386 B
Ruby
class Merchant < ApplicationRecord
|
|
has_many :transactions, dependent: :nullify, class_name: "Account::Transaction"
|
|
belongs_to :family
|
|
|
|
validates :name, :color, :family, presence: true
|
|
validates :name, uniqueness: { scope: :family }
|
|
|
|
scope :alphabetically, -> { order(:name) }
|
|
|
|
COLORS = %w[#e99537 #4da568 #6471eb #db5a54 #df4e92 #c44fe9 #eb5429 #61c9ea #805dee #6ad28a]
|
|
end
|