# frozen_string_literal: true class Action < ApplicationRecord belongs_to :rule_set scope :enabled, -> { where(enabled: true) } end