diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 8d76138..c3ff3e3 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -31,7 +31,7 @@ deploy:
script:
- sh deploy/gdccloud/deploy.sh
only:
- - master
+ - dev
cache:
key: "$CI_PROJECT_ID"
policy: pull
diff --git a/README.md b/README.md
index b324350..ca4db83 100644
--- a/README.md
+++ b/README.md
@@ -8,6 +8,6 @@
3. Получить платформу для обкатки научных проектов магистрантов по созданию интеллектуальны систем.
4. Получить проект для обучения бакалавров современым технологиям разработки.
-[Демо версия доступна здесь](https://193.110.3.124:8080)
+[Демо версия доступна здесь](http://193.110.3.124:8080)
[Для разворачивания проекта и ведения разработки ознакомьтесь с wiki](https://gitlab.com/romanov73/ng-tracker/wikis/home)
\ No newline at end of file
diff --git a/src/main/java/ru/ulstu/grant/model/GrantDto.java b/src/main/java/ru/ulstu/grant/model/GrantDto.java
index 0f1850a..e56896a 100644
--- a/src/main/java/ru/ulstu/grant/model/GrantDto.java
+++ b/src/main/java/ru/ulstu/grant/model/GrantDto.java
@@ -4,7 +4,6 @@ import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import org.hibernate.validator.constraints.NotEmpty;
import ru.ulstu.deadline.model.DeadlineDto;
-import ru.ulstu.grant.model.Grant;
import ru.ulstu.project.model.ProjectDto;
import java.util.ArrayList;
@@ -56,13 +55,17 @@ public class GrantDto {
return id;
}
- public void setId(Integer id) {this.id = id;}
+ public void setId(Integer id) {
+ this.id = id;
+ }
public String getTitle() {
return title;
}
- public void setTitle(String title) {this.title = title;}
+ public void setTitle(String title) {
+ this.title = title;
+ }
public Grant.GrantStatus getStatus() {
return status;
@@ -84,18 +87,23 @@ public class GrantDto {
return comment;
}
- public void setComment(String comment) {this.comment = comment;}
+ public void setComment(String comment) {
+ this.comment = comment;
+ }
public ProjectDto getProject() {
return project;
}
- public void setProject(ProjectDto project) {this.project = project;}
+ public void setProject(ProjectDto project) {
+ this.project = project;
+ }
public String getApplicationFileName() {
return applicationFileName;
}
public void setApplicationFileName(String applicationFileName) {
- this.applicationFileName = applicationFileName;}
+ this.applicationFileName = applicationFileName;
+ }
}
diff --git a/src/main/java/ru/ulstu/grant/service/GrantService.java b/src/main/java/ru/ulstu/grant/service/GrantService.java
index 31d0a04..d5beec3 100644
--- a/src/main/java/ru/ulstu/grant/service/GrantService.java
+++ b/src/main/java/ru/ulstu/grant/service/GrantService.java
@@ -107,11 +107,11 @@ public class GrantService {
}
@Transactional
- public Grant create(String title, Project project_id, Date deadlineDate) {
+ public Grant create(String title, Project projectId, Date deadlineDate) {
Grant grant = new Grant();
grant.setTitle(title);
grant.setComment("Комментарий к гранту 1");
- grant.setProject(project_id);
+ grant.setProject(projectId);
grant.setStatus(APPLICATION);
grant.getDeadlines().add(new Deadline(deadlineDate, "первый дедлайн"));
grant = grantRepository.save(grant);
diff --git a/src/main/java/ru/ulstu/paper/controller/PaperController.java b/src/main/java/ru/ulstu/paper/controller/PaperController.java
index 6f475bf..cb34a8a 100644
--- a/src/main/java/ru/ulstu/paper/controller/PaperController.java
+++ b/src/main/java/ru/ulstu/paper/controller/PaperController.java
@@ -65,7 +65,7 @@ public class PaperController {
public String save(@Valid PaperDto paperDto, Errors errors) throws IOException {
filterEmptyDeadlines(paperDto);
if (paperDto.getDeadlines().isEmpty()) {
- errors.rejectValue("deadlines", "errorCode","Не может быть пустым");
+ errors.rejectValue("deadlines", "errorCode", "Не может быть пустым");
}
if (errors.hasErrors()) {
return "/papers/paper";
@@ -103,7 +103,7 @@ public class PaperController {
@ModelAttribute("allYears")
public List
- Приближается дедлайн статьи "Title". + Приближается дедлайн статьи "Title".
Срок исполнения: . diff --git a/src/main/resources/mail_templates/paperFailedNotification.html b/src/main/resources/mail_templates/paperFailedNotification.html index 3eb1399..e17ee38 100644 --- a/src/main/resources/mail_templates/paperFailedNotification.html +++ b/src/main/resources/mail_templates/paperFailedNotification.html @@ -10,7 +10,7 @@ Уважаемый(ая) Ivan Ivanov
- Статья "Title" провалена. + Статья "Title" провалена. Предыдущий статус - "oldStatus".
diff --git a/src/main/resources/mail_templates/paperStatusChangeNotification.html b/src/main/resources/mail_templates/paperStatusChangeNotification.html index 853458d..db58347 100644 --- a/src/main/resources/mail_templates/paperStatusChangeNotification.html +++ b/src/main/resources/mail_templates/paperStatusChangeNotification.html @@ -10,7 +10,7 @@ Уважаемый(ая) Ivan Ivanov
- Статус статьи "Title" сменился с + Статус статьи "Title" сменился с "oldStatus" на "newStatus".