summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Andres <thomas@andres.in>2017-03-16 22:43:59 +0100
committerThomas Andres <thomas@andres.in>2017-03-16 22:43:59 +0100
commitad0cee20c199f5432affca90a320583677bb1e04 (patch)
treee67dcc5afa5a6bf9da72a0c26f349d97db317f75
parent30cdeaa689eae4f6ab10196a3148a2137e7361c5 (diff)
changed date_started to the same behaviour as date_due
-rw-r--r--app/Validator/TaskValidator.php2
-rw-r--r--doc/en_US/api-task-procedures.markdown2
2 files changed, 2 insertions, 2 deletions
diff --git a/app/Validator/TaskValidator.php b/app/Validator/TaskValidator.php
index 68234411..f82e7374 100644
--- a/app/Validator/TaskValidator.php
+++ b/app/Validator/TaskValidator.php
@@ -43,7 +43,7 @@ class TaskValidator extends BaseValidator
new Validators\MaxLength('title', t('The maximum length is %d characters', 200), 200),
new Validators\MaxLength('reference', t('The maximum length is %d characters', 50), 50),
new Validators\Date('date_due', t('Invalid date'), $this->dateParser->getParserFormats()),
- new Validators\Date('date_started', t('Invalid date'), $this->dateParser->getDateTimeFormats(true)),
+ new Validators\Date('date_started', t('Invalid date'), $this->dateParser->getParserFormats()),
new Validators\Numeric('time_spent', t('This value must be numeric')),
new Validators\Numeric('time_estimated', t('This value must be numeric')),
);
diff --git a/doc/en_US/api-task-procedures.markdown b/doc/en_US/api-task-procedures.markdown
index af24c523..a5691c12 100644
--- a/doc/en_US/api-task-procedures.markdown
+++ b/doc/en_US/api-task-procedures.markdown
@@ -23,7 +23,7 @@ API Task Procedures
- **recurrence_timeframe** (integer, optional)
- **recurrence_basedate** (integer, optional)
- **tags** ([]string, optional)
- - **date_started**: d/m/Y H:i format (string, optional)
+ - **date_started**: ISO8601 format (string, optional)
- Result on success: **task_id**
- Result on failure: **false**