2022-12-22 20:27:46 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
json.html controller.render_to_string(
|
2023-01-03 21:43:03 +08:00
|
|
|
partial: 'access_permissions/partials/new_protocol_assignments_form',
|
2022-12-22 20:27:46 +08:00
|
|
|
formats: [:html],
|
|
|
|
locals: {
|
|
|
|
resource: @protocol,
|
2023-01-03 21:43:03 +08:00
|
|
|
form_object: @user_assignment,
|
|
|
|
users: current_team.users.where.not(id: @protocol.assigned_users.select(:id)),
|
|
|
|
create_path: access_permissions_protocols_path(id: @protocol.id),
|
2022-12-22 20:27:46 +08:00
|
|
|
resource_path: edit_access_permissions_protocol_path(@protocol)
|
|
|
|
},
|
|
|
|
layout: false
|
|
|
|
)
|