mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-03 15:20:39 +08:00
9 lines
195 B
Ruby
9 lines
195 B
Ruby
# frozen_string_literal: true
|
|
|
|
class BasicVoterSerializer < ApplicationSerializer
|
|
attributes :id, :username, :name, :avatar_template, :direction
|
|
|
|
def direction
|
|
object.direction
|
|
end
|
|
end
|