mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-09 08:57:41 +08:00
12 lines
312 B
Ruby
12 lines
312 B
Ruby
# frozen_string_literal: true
|
|
|
|
json.modal controller.render_to_string(
|
|
partial: 'access_permissions/protocols/modals/show_modal',
|
|
formats: [:html],
|
|
locals: {
|
|
protocol: @protocol,
|
|
users: @protocol.assigned_users,
|
|
can_manage_resource: can_manage_protocol_users?(@protocol)
|
|
},
|
|
layout: false
|
|
)
|