mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-24 23:20:39 +08:00
This PR introduces a basic AdminNotice model to store these notices. Admin notices are categorized by their source/type (currently only notices from problem check.) They also have a priority.
5 lines
133 B
Ruby
Vendored
5 lines
133 B
Ruby
Vendored
# frozen_string_literal: true
|
|
|
|
class AdminNoticeSerializer < ApplicationSerializer
|
|
attributes :priority, :message, :identifier
|
|
end
|