Better caldav support #73

Merged
konrad merged 82 commits from feature/better-caldav-support into master 2019-05-22 17:48:49 +00:00
2 changed files with 4 additions and 2 deletions
Showing only changes of commit a517840046 - Show all commits

View File

@ -196,7 +196,9 @@ Sorry for some of them being in German, I'll tranlate them at some point.
* [x] Last modified
* [x] Content Size
* [x] Modify the caldav lib as proposed in the pr
* [ ] Improve login performance, each request taking > 1.5 sec is just too much, maybe just use the default value for hash iterations in the login/register function
* [x] Improve login performance, each request taking > 1.5 sec is just too much, maybe just use the default value for hash iterations in the login/register function
* [ ] Only show priority when we have one
* [ ] Show a proper calendar title
* [ ] Cleanup the whole mess I made with the handlers and storage providers etc -> Probably a good idea to create a seperate storage provider etc for lists and tasks
* [ ] Check if only needed things are queried from the db when accessing dav (for ex. no need to get all tasks when we actually only need the title)
* [ ] Setting to disable caldav completely

View File

@ -115,7 +115,7 @@ func CreateUser(user User) (newUser User, err error) {
// HashPassword hashes a password
func hashPassword(password string) (string, error) {
bytes, err := bcrypt.GenerateFromPassword([]byte(password), 14)
bytes, err := bcrypt.GenerateFromPassword([]byte(password), 11)
return string(bytes), err
}