mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 20:24:43 +08:00
10 lines
345 B
Ruby
10 lines
345 B
Ruby
json.array! notifications do |notification|
|
|
json.id notification.id
|
|
json.title notification.title
|
|
json.message notification.message
|
|
json.typeOf notification.type_of
|
|
json.createdAt notification.created_at
|
|
if notification.type_of == 'recent_changes'
|
|
json.avatarThumb avatar_path(notification.generator_user, :icon_small)
|
|
end
|
|
end
|