chore: rubocop
chore: fix api test conventions chore: rubocop -A spec/ chore: more rubocop -A fix failing test rubocop fixes removes helper methods that are in my opinion dead code more rubocop fixes rubocop -a --auto-gen-config
This commit is contained in:
parent
f6fb804bbe
commit
fb2b4d8a8a
331 changed files with 4263 additions and 4507 deletions
|
|
@ -8,14 +8,16 @@ class FinancialTransaction < ApplicationRecord
|
|||
belongs_to :financial_link, optional: true
|
||||
belongs_to :financial_transaction_type
|
||||
belongs_to :group_order, optional: true
|
||||
belongs_to :reverts, optional: true, class_name: 'FinancialTransaction', foreign_key: 'reverts_id'
|
||||
belongs_to :reverts, optional: true, class_name: 'FinancialTransaction'
|
||||
has_one :reverted_by, class_name: 'FinancialTransaction', foreign_key: 'reverts_id'
|
||||
|
||||
validates_presence_of :amount, :note, :user_id
|
||||
validates_numericality_of :amount, greater_then: -100_000,
|
||||
less_than: 100_000
|
||||
validates :amount, :note, :user_id, presence: true
|
||||
validates :amount, numericality: { greater_then: -100_000,
|
||||
less_than: 100_000 }
|
||||
|
||||
scope :visible, -> { joins('LEFT JOIN financial_transactions r ON financial_transactions.id = r.reverts_id').where('r.id IS NULL').where(reverts: nil) }
|
||||
scope :visible, lambda {
|
||||
joins('LEFT JOIN financial_transactions r ON financial_transactions.id = r.reverts_id').where('r.id IS NULL').where(reverts: nil)
|
||||
}
|
||||
scope :without_financial_link, -> { where(financial_link: nil) }
|
||||
scope :with_ordergroup, -> { where.not(ordergroup: nil) }
|
||||
|
||||
|
|
@ -28,12 +30,12 @@ class FinancialTransaction < ApplicationRecord
|
|||
# @todo remove alias (and rename created_on to created_at below) after #575
|
||||
ransack_alias :created_at, :created_on
|
||||
|
||||
def self.ransackable_attributes(auth_object = nil)
|
||||
%w(id amount note created_on user_id)
|
||||
def self.ransackable_attributes(_auth_object = nil)
|
||||
%w[id amount note created_on user_id]
|
||||
end
|
||||
|
||||
def self.ransackable_associations(auth_object = nil)
|
||||
%w() # none, and certainly not user until we've secured that more
|
||||
def self.ransackable_associations(_auth_object = nil)
|
||||
%w[] # none, and certainly not user until we've secured that more
|
||||
end
|
||||
|
||||
# Use this save method instead of simple save and after callback
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue