EvoBal/app/models/action.rb

8 lines
138 B
Ruby
Raw Normal View History

2021-01-20 13:46:11 +01:00
# frozen_string_literal: true
class Action < ApplicationRecord
belongs_to :rule_set
scope :enabled, -> { where(enabled: true) }
2021-01-20 13:46:11 +01:00
end