aboutsummaryrefslogtreecommitdiff
path: root/Timeline
Commit message (Collapse)AuthorAgeFilesLines
* Migrate database.crupest2020-03-067-6/+720
|
* ...crupest2020-03-063-4/+7
|
* Migrate avatar service. TODO: Migrate database.crupest2020-03-056-26/+230
|
* Implement data manager.crupest2020-03-053-39/+107
|
* Design the data manager interface.crupest2020-03-051-0/+79
|
* Now posts use local id in same timeline. Also fixed some unconforming place ↵crupest2020-02-299-27/+344
| | | | in migrations.
* Guess what, Chinese character is also a "letter". So no need to change code. ↵crupest2020-02-291-1/+1
| | | | Just add some tests.
* One fogeted place is cleared. Also a note: Sqlite does not respect the ↵crupest2020-02-291-1/+0
| | | | length constraint on type.
* Remove the length constraint in entity as entity framework core does not use ↵crupest2020-02-294-12/+9
| | | | them as well.
* Add delete timeline.crupest2020-02-242-0/+45
|
* Add visibility query filter in get timelines api.crupest2020-02-215-9/+62
|
* Migrate at runtime in production environment.crupest2020-02-211-3/+16
|
* Move jwt token key from configuration to database and auto generatable.crupest2020-02-2119-27/+609
|
* Migrate to use sqlite.crupest2020-02-2125-1738/+27
|
* Update packages.crupest2020-02-201-4/+4
|
* Improve relate filter.crupest2020-02-052-10/+46
|
* Add get timeline list feature.crupest2020-02-047-26/+119
|
* Add self link in entities.crupest2020-02-042-0/+5
|
* Finish normal timeline development.crupest2020-02-033-3/+8
|
* Add TimelineController.crupest2020-02-037-34/+65
|
* Add copy to clipboard function to code generator.crupest2020-02-021-2/+3
|
* ...crupest2020-02-024-6/+183
|
* Add timeline service.crupest2020-02-0210-46/+172
|
* ...crupest2020-02-023-83/+94
|
* ...crupest2020-02-015-67/+336
|
* Make all patch return the new entity.crupest2020-01-314-26/+35
|
* Fix test bugs in user info mapper. Make create user action return created ↵crupest2020-01-313-18/+10
| | | | user info.
* Fix a bug in url generation and add development database migration.crupest2020-01-315-62/+420
|
* Combine two user info types.crupest2020-01-314-45/+30
|
* ...crupest2020-01-317-14/+230
|
* Finish reafctor, TODO: Database migration.crupest2020-01-308-19/+32
|
* ...crupest2020-01-3049-1473/+521
|
* ...crupest2020-01-2911-127/+207
|
* ...crupest2020-01-2924-1113/+265
|
* ...crupest2020-01-2930-388/+1069
|
* Upgrade library version.crupest2020-01-241-4/+4
|
* ...crupest2020-01-2310-117/+95
|
* ...crupest2020-01-2126-281/+391
|
* Basically finish refactor of error codes.crupest2020-01-193-6/+5
|
* ...crupest2020-01-1835-1538/+725
|
* Fix a bug in delete post.crupest2020-01-171-2/+0
|
* Fix a bug in wrong message of BadPasswordException.crupest2020-01-122-6/+2
|
* Use sqlite development database.crupest2020-01-0518-41/+1219
|
* Fix the format in date string.crupest2019-12-111-1/+1
| | | | | Note: Because standard date time format "s" in Dot Net does not add "Z" at the tail of the result string even if the date is UTC. So I manually add it so that web browser can correctly parse the date string.
* Fix a bug in simultaneous database queries.crupest2019-12-101-6/+10
| | | | | Note on this: You should not use Task.WhenAll to do a bunch of async database queries since EntityFramework Core does not support DbContext to do two queries in the same time.
* Merge branch 'master' of github.com:crupest/Timelinecrupest2019-12-103-5/+38
|\
| * Migrate to System.Text.Json . Format enum to string instead of number. Use ↵crupest2019-11-203-5/+38
| | | | | | | | ISO8601 format for datetime.
* | Migrate to DotNetCore 3.1 .crupest2019-12-101-7/+6
|/
* Update packages and migrate database.crupest2019-11-204-12/+644
|
* Get posts should return posts ordered by time.crupest2019-11-201-1/+1
|