mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-03 10:06:05 +08:00
9 lines
204 B
Ruby
9 lines
204 B
Ruby
# frozen_string_literal: true
|
|
|
|
class GroupedScreenedUrlSerializer < ApplicationSerializer
|
|
attributes :domain, :action, :match_count, :last_match_at, :created_at
|
|
|
|
def action
|
|
"do_nothing"
|
|
end
|
|
end
|