Skip to content
Snippets Groups Projects
Commit f4468a21 authored by Sebastian Mihalache's avatar Sebastian Mihalache
Browse files

saved author in db

parent 78d5f16e
No related branches found
No related tags found
No related merge requests found
Showing
with 17 additions and 9 deletions
File deleted
File deleted
MANIFEST-000094
2018/01/10-16:44:33.243474 700006ff1000 Recovering log #93
2018/01/10-16:44:33.246183 700006ff1000 Delete type=0 #93
2018/01/10-16:44:33.246360 700006ff1000 Delete type=3 #92
2018/01/10-16:44:32.195144 70000da20000 Recovering log #91
2018/01/10-16:44:32.197582 70000da20000 Delete type=3 #90
2018/01/10-16:44:32.197747 70000da20000 Delete type=0 #91
File deleted
......@@ -2,5 +2,6 @@
"pubsweet-component-xpub-app",
"pubsweet-component-xpub-authentication",
"pubsweet-component-xpub-dashboard",
"xpub-faraday-server"
"xpub-faraday-server",
"pubsweet-component-ink-backend"
]
......@@ -21,7 +21,7 @@ module.exports = {
abstract: Joi.string(),
articleType: Joi.string(),
articleSection: Joi.array().items(Joi.string()),
authors: Joi.array(),
// authors: Joi.array(),
keywords: Joi.array(),
}),
declarations: Joi.object().unknown(),
......@@ -58,6 +58,20 @@ module.exports = {
reviewers: Joi.array(),
lock: Joi.object(),
decision: Joi.object(),
authors: Joi.array().items(
Joi.object({
first_name: Joi.string().required(),
last_name: Joi.string().required(),
middle_name: Joi.string().allow(''),
email: Joi.string()
.email()
.required(),
affiliation: Joi.string().required(),
country: Joi.string().required(),
is_submitting: Joi.boolean(),
is_corresponding: Joi.boolean(),
}),
),
},
],
user: {
......
File deleted
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment