We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94e452b commit 11a915cCopy full SHA for 11a915c
app/models/register/status.rb
@@ -301,13 +301,15 @@ def check_pdf_files
301
end
302
303
names.each do |n|
304
- Check.create_with(pass: anames[n]).find_or_create_by(
+ par = { pass: anames[n], user: nil }
305
+ Check.create_with(par).find_or_create_by(
306
name: n, kind: :effective_publication_missing_accession
- ).update(pass: anames[n])
307
+ ).update(par)
308
- Check.create_with(pass: inames[n]).find_or_create_by(
309
+ par = { pass: inames[n], user: nil }
310
311
name: n, kind: :name_missing_in_effective_publication
- ).update(pass: inames[n])
312
313
314
315
add_note('The effective publication files have been parsed')
0 commit comments