Merge pull request #34 from j1994d/TK-1

url misspell & delete space
This commit is contained in:
Suraj Patil 2018-10-02 17:20:47 +05:30 committed by GitHub
commit 8dbf1ceb0a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -1,3 +1,3 @@
<footer class="footer">
Made in India with <span class="glyphicon glyphicon-heart"></span> by <a href="htp://github.com/thewhitetulip">@thewhitetulip</a>
Made in India with <span class="glyphicon glyphicon-heart"></span> by <a href="https://github.com/thewhitetulip">@thewhitetulip</a>
</footer>

View File

@ -17,9 +17,9 @@ type Task struct {
Category string `json:"category"`
Referer string `json:"referer,omitempty"`
Comments []Comment `json:"comments,omitempty"`
IsOverdue bool `json:"isoverdue, omitempty"`
IsHidden int `json:"ishidden, omitempty`
CompletedMsg string `json:"ishidden, omitempty"`
IsOverdue bool `json:"isoverdue,omitempty"`
IsHidden int `json:"ishidden,omitempty`
CompletedMsg string `json:"ishidden,omitempty"`
}
type Tasks []Task