mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-14 21:24:54 +08:00
f856ddf78c
* Fix assigned items datatable in shareable link with stock management [SCI-8944] * Avoid skipping auth token verification for assets download [SCI-8944]
10 lines
308 B
Ruby
10 lines
308 B
Ruby
# frozen_string_literal: true
|
|
|
|
json.draw @draw
|
|
json.data do
|
|
json.array! prepare_simple_view_row_columns(
|
|
@repository_rows, @repository, @my_module, @datatable_params || {}
|
|
)
|
|
end
|
|
json.recordsFiltered @repository_rows.first ? @repository_rows.first.filtered_count : 0
|
|
json.recordsTotal @all_rows_count
|