mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-15 21:56:12 +08:00
13 lines
286 B
Text
13 lines
286 B
Text
|
# frozen_string_literal: true
|
||
|
|
||
|
json.modal controller.render_to_string(
|
||
|
partial: 'access_permissions/experiments/modals/show_modal',
|
||
|
formats: [:html],
|
||
|
locals: {
|
||
|
experiment: @experiment,
|
||
|
users: @project.users,
|
||
|
project_path: project_path(@project)
|
||
|
},
|
||
|
layout: false
|
||
|
)
|