mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-04 12:31:08 +08:00
9 lines
151 B
Ruby
9 lines
151 B
Ruby
# frozen_string_literal: true
|
|
|
|
class InactiveUserSerializer < BasicUserSerializer
|
|
attributes :inactive
|
|
|
|
def inactive
|
|
!object.active?
|
|
end
|
|
end
|