simplify a bit more
This commit is contained in:
parent
35ae011b59
commit
1ef8d99e6e
1 changed files with 1 additions and 3 deletions
|
@ -48,10 +48,8 @@ class ProcedureRevision < ApplicationRecord
|
||||||
.tap do |types_de_champ|
|
.tap do |types_de_champ|
|
||||||
params[:order_place] = types_de_champ.present? ? types_de_champ.last.order_place + 1 : 0
|
params[:order_place] = types_de_champ.present? ? types_de_champ.last.order_place + 1 : 0
|
||||||
end.create(params).migrate_parent!
|
end.create(params).migrate_parent!
|
||||||
elsif params[:private]
|
|
||||||
types_de_champ_private.create(params)
|
|
||||||
else
|
else
|
||||||
types_de_champ_public.create(params)
|
types_de_champ.create(params)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue