mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-02-23 15:24:57 +08:00
11 lines
344 B
Ruby
11 lines
344 B
Ruby
# frozen_string_literal: true
|
|
|
|
json.draw @draw
|
|
json.recordsTotal @all_rows_count
|
|
json.recordsFiltered @filtered_rows_count
|
|
json.data do
|
|
json.array! prepare_row_columns(@repository_rows,
|
|
@repository,
|
|
@columns_mappings,
|
|
@repository.team)
|
|
end
|