discourse/plugins/automation/app/models/discourse_automation/pending_pm.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
239 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module DiscourseAutomation
class PendingPm < ActiveRecord::Base
self.table_name = "discourse_automation_pending_pms"
belongs_to :automation, class_name: "DiscourseAutomation::Automation"
end
end