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