mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-10 09:28:37 +08:00
13 lines
307 B
Text
13 lines
307 B
Text
|
# frozen_string_literal: true
|
||
|
|
||
|
json.form controller.render_to_string(
|
||
|
partial: 'access_permissions/partials/project_member_field',
|
||
|
formats: [:html],
|
||
|
locals: {
|
||
|
user: @form.user,
|
||
|
project: @project,
|
||
|
update_path: access_permissions_project_path(@project, format: :json)
|
||
|
},
|
||
|
layout: false
|
||
|
)
|