mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-15 13:45:25 +08:00
13 lines
394 B
Ruby
13 lines
394 B
Ruby
# frozen_string_literal: true
|
|
|
|
json.form controller.render_to_string(
|
|
partial: 'access_permissions/partials/member_field',
|
|
formats: [:html],
|
|
locals: {
|
|
user: @user_assignment.user,
|
|
object: @protocol,
|
|
update_path: access_permissions_protocol_path(@protocol),
|
|
delete_path: access_permissions_protocol_path(@protocol, user_id: @user_assignment.user_id)
|
|
},
|
|
layout: false
|
|
)
|