0
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2026-08-14 13:58:53 +08:00
discourse/plugins/automation/app/models/discourse_automation/user_global_notice.rb
Osama Sayegh 3d4faf3272
FEATURE: Merge discourse-automation (#26432)
Automation (previously known as discourse-automation) is now a core plugin.
2024-04-03 18:20:43 +03:00

9 lines
201 B
Ruby
Vendored

# frozen_string_literal: true
module DiscourseAutomation
class UserGlobalNotice < ActiveRecord::Base
self.table_name = "discourse_automation_user_global_notices"
belongs_to :user
end
end