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

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

10 lines
201 B
Ruby
Raw Normal View History

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