Add type `template` and isPrivate `true` when saving from submission page (#5328)

This commit is contained in:
Mingliang Tao 2021-03-01 16:23:20 +08:00 коммит произвёл GitHub
Родитель ea3d04443f
Коммит 50798d995d
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -207,6 +207,8 @@ export const SubmissionSection = props => {
template.description = templateDescription;
template.protocol = protocol.toYaml();
template.source = 'pai';
template.type = 'template';
template.isPrivate = true;
template.author = user;
try {
await createTemplate(template);