mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-14 21:24:54 +08:00
42a537390e
* Group public users in experiments and tasks [SCI-6332] * Add list of users to the public users group elements [SCI-6404]
12 lines
304 B
Ruby
12 lines
304 B
Ruby
# frozen_string_literal: true
|
|
|
|
json.modal controller.render_to_string(
|
|
partial: 'access_permissions/experiments/modals/show_modal',
|
|
formats: [:html],
|
|
locals: {
|
|
experiment: @experiment,
|
|
users: @project.manually_assigned_users,
|
|
project_path: project_path(@project)
|
|
},
|
|
layout: false
|
|
)
|