mirror of
https://github.com/discourse/discourse.git
synced 2026-08-07 13:19:19 +08:00
9 lines
204 B
Ruby
Vendored
9 lines
204 B
Ruby
Vendored
# frozen_string_literal: true
|
|
|
|
class GroupedScreenedUrlSerializer < ApplicationSerializer
|
|
attributes :domain, :action, :match_count, :last_match_at, :created_at
|
|
|
|
def action
|
|
"do_nothing"
|
|
end
|
|
end
|