mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 02:11:08 -06:00
3d4faf3272
Automation (previously known as discourse-automation) is now a core plugin.
10 lines
201 B
Ruby
10 lines
201 B
Ruby
# frozen_string_literal: true
|
|
|
|
module DiscourseAutomation
|
|
class UserGlobalNotice < ActiveRecord::Base
|
|
self.table_name = "discourse_automation_user_global_notices"
|
|
|
|
belongs_to :user
|
|
end
|
|
end
|