mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 22:05:48 +08:00
78022e7a5f
It used to return 404 which made the user card render and then quickly disappear.
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
|