mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-12-29 03:35:25 +08:00
fixup! Fix failing tests
This commit is contained in:
parent
2ea2700837
commit
5dccdbab17
1 changed files with 6 additions and 6 deletions
|
@ -108,13 +108,13 @@ class ExperimentsController < ApplicationController
|
|||
|
||||
experiment_annotation_notification(old_text)
|
||||
|
||||
activity_type_of = if experiment_params[:archived] == 'false'
|
||||
:restore_experiment
|
||||
else
|
||||
:edit_experiment
|
||||
end
|
||||
activity_type = if experiment_params[:archived] == 'false'
|
||||
:restore_experiment
|
||||
else
|
||||
:edit_experiment
|
||||
end
|
||||
Activities::CreateActivityService
|
||||
.call(activity_type: activity_type_of,
|
||||
.call(activity_type: activity_type,
|
||||
owner: current_user,
|
||||
subject: @experiment,
|
||||
project: @experiment.project,
|
||||
|
|
Loading…
Reference in a new issue