mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-10-04 02:45:53 +08:00
Merge pull request #8388 from andrej-scinote/aj_SCI_11776
Fix form duplicate activity [SCI-11776]
This commit is contained in:
commit
06127357b6
2 changed files with 2 additions and 2 deletions
|
@ -167,7 +167,7 @@ class FormsController < ApplicationController
|
||||||
def duplicate
|
def duplicate
|
||||||
ActiveRecord::Base.transaction do
|
ActiveRecord::Base.transaction do
|
||||||
new_form = @form.duplicate!(current_user)
|
new_form = @form.duplicate!(current_user)
|
||||||
log_activity(@form, :form_duplicated, { form_new: new_form.id })
|
log_activity(new_form, :form_duplicated, { form_old: @form.id })
|
||||||
render json: { message: t('forms.duplicated.success_flash', name: escape_input(@form.name)) }
|
render json: { message: t('forms.duplicated.success_flash', name: escape_input(@form.name)) }
|
||||||
rescue ActiveRecord::RecordInvalid
|
rescue ActiveRecord::RecordInvalid
|
||||||
render json: { error: new_form.errors.full_messages }, status: :unprocessable_entity
|
render json: { error: new_form.errors.full_messages }, status: :unprocessable_entity
|
||||||
|
|
|
@ -369,7 +369,7 @@ en:
|
||||||
protocol_step_form_added_html: "%{user} added form <strong>%{form}</strong> in protocol's step %{step_position} <strong>%{step}</strong> in Protocol repository."
|
protocol_step_form_added_html: "%{user} added form <strong>%{form}</strong> in protocol's step %{step_position} <strong>%{step}</strong> in Protocol repository."
|
||||||
protocol_step_form_deleted_html: "%{user} deleted form <strong>%{form}</strong> in protocol's step %{step_position} <strong>%{step}</strong> in Protocol repository."
|
protocol_step_form_deleted_html: "%{user} deleted form <strong>%{form}</strong> in protocol's step %{step_position} <strong>%{step}</strong> in Protocol repository."
|
||||||
protocol_step_form_moved_html: "%{user} moved form <strong>%{form}</strong> in protocol's step %{step_position} <strong>%{step}</strong> to step %{step_position_destination} <strong>%{step_destination}</strong> in Protocol repository."
|
protocol_step_form_moved_html: "%{user} moved form <strong>%{form}</strong> in protocol's step %{step_position} <strong>%{step}</strong> to step %{step_position_destination} <strong>%{step_destination}</strong> in Protocol repository."
|
||||||
form_duplicated_html: "%{user} duplicated form %{form_new} from %{form} in Forms."
|
form_duplicated_html: "%{user} duplicated form %{form} from %{form_old} in Forms."
|
||||||
form_block_duplicated_html: "%{user} duplicated form block %{block_name} in form %{form} in Form templates."
|
form_block_duplicated_html: "%{user} duplicated form block %{block_name} in form %{form} in Form templates."
|
||||||
form_unpublished_html: "%{user} unpublished form %{form}."
|
form_unpublished_html: "%{user} unpublished form %{form}."
|
||||||
activity_name:
|
activity_name:
|
||||||
|
|
Loading…
Add table
Reference in a new issue