mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-27 06:56:35 +08:00
9 lines
239 B
Ruby
Vendored
9 lines
239 B
Ruby
Vendored
# 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
|