mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-18 07:01:58 +08:00
14 lines
362 B
Ruby
14 lines
362 B
Ruby
# frozen_string_literal: true
|
|
|
|
json.html controller.render_to_string(
|
|
partial: 'access_permissions/projects/modals/edit_modal',
|
|
formats: [:html],
|
|
locals: {
|
|
project: @project,
|
|
update_path: access_permissions_project_path(@project),
|
|
new_resource_path: new_access_permissions_project_path(id: @project)
|
|
},
|
|
layout: false
|
|
)
|
|
|
|
json.flash @message
|