EvoBal/app/models/rule_set.rb

9 lines
154 B
Ruby
Raw Normal View History

2021-01-20 13:46:11 +01:00
# frozen_string_literal: true
class RuleSet < ApplicationRecord
has_many :rules
has_many :actions
scope :enabled, -> { where(enabled: true) }
2021-01-20 13:46:11 +01:00
end