2013-02-05 14:16:51 -05:00
|
|
|
class TopicPoster < OpenStruct
|
|
|
|
include ActiveModel::Serialization
|
|
|
|
|
2017-02-17 17:54:43 -05:00
|
|
|
attr_accessor :user, :description, :extras, :id, :primary_group
|
2013-02-05 14:16:51 -05:00
|
|
|
|
|
|
|
def attributes
|
2013-03-23 09:39:01 -04:00
|
|
|
{
|
|
|
|
'user' => user,
|
|
|
|
'description' => description,
|
|
|
|
'extras' => extras,
|
2017-02-17 17:54:43 -05:00
|
|
|
'id' => id,
|
|
|
|
'primary_group' => primary_group
|
2013-03-23 09:39:01 -04:00
|
|
|
}
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
# TODO: Remove when old list is removed
|
|
|
|
def [](attr)
|
|
|
|
send(attr)
|
|
|
|
end
|
|
|
|
end
|