mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 09:17:30 +08:00
10 lines
151 B
Ruby
10 lines
151 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class InactiveUserSerializer < BasicUserSerializer
|
||
|
attributes :inactive
|
||
|
|
||
|
def inactive
|
||
|
!object.active?
|
||
|
end
|
||
|
end
|