Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Migrate database. | crupest | 2020-03-06 | 7 | -6/+720 |
| | |||||
* | ... | crupest | 2020-03-06 | 3 | -4/+7 |
| | |||||
* | Migrate avatar service. TODO: Migrate database. | crupest | 2020-03-05 | 6 | -26/+230 |
| | |||||
* | Implement data manager. | crupest | 2020-03-05 | 3 | -39/+107 |
| | |||||
* | Design the data manager interface. | crupest | 2020-03-05 | 1 | -0/+79 |
| | |||||
* | Now posts use local id in same timeline. Also fixed some unconforming place ↵ | crupest | 2020-02-29 | 9 | -27/+344 |
| | | | | in migrations. | ||||
* | Guess what, Chinese character is also a "letter". So no need to change code. ↵ | crupest | 2020-02-29 | 1 | -1/+1 |
| | | | | Just add some tests. | ||||
* | One fogeted place is cleared. Also a note: Sqlite does not respect the ↵ | crupest | 2020-02-29 | 1 | -1/+0 |
| | | | | length constraint on type. | ||||
* | Remove the length constraint in entity as entity framework core does not use ↵ | crupest | 2020-02-29 | 4 | -12/+9 |
| | | | | them as well. | ||||
* | Add delete timeline. | crupest | 2020-02-24 | 2 | -0/+45 |
| | |||||
* | Add visibility query filter in get timelines api. | crupest | 2020-02-21 | 5 | -9/+62 |
| | |||||
* | Migrate at runtime in production environment. | crupest | 2020-02-21 | 1 | -3/+16 |
| | |||||
* | Move jwt token key from configuration to database and auto generatable. | crupest | 2020-02-21 | 19 | -27/+609 |
| | |||||
* | Migrate to use sqlite. | crupest | 2020-02-21 | 25 | -1738/+27 |
| | |||||
* | Update packages. | crupest | 2020-02-20 | 1 | -4/+4 |
| | |||||
* | Improve relate filter. | crupest | 2020-02-05 | 2 | -10/+46 |
| | |||||
* | Add get timeline list feature. | crupest | 2020-02-04 | 7 | -26/+119 |
| | |||||
* | Add self link in entities. | crupest | 2020-02-04 | 2 | -0/+5 |
| | |||||
* | Finish normal timeline development. | crupest | 2020-02-03 | 3 | -3/+8 |
| | |||||
* | Add TimelineController. | crupest | 2020-02-03 | 7 | -34/+65 |
| | |||||
* | Add copy to clipboard function to code generator. | crupest | 2020-02-02 | 1 | -2/+3 |
| | |||||
* | ... | crupest | 2020-02-02 | 4 | -6/+183 |
| | |||||
* | Add timeline service. | crupest | 2020-02-02 | 10 | -46/+172 |
| | |||||
* | ... | crupest | 2020-02-02 | 3 | -83/+94 |
| | |||||
* | ... | crupest | 2020-02-01 | 5 | -67/+336 |
| | |||||
* | Make all patch return the new entity. | crupest | 2020-01-31 | 4 | -26/+35 |
| | |||||
* | Fix test bugs in user info mapper. Make create user action return created ↵ | crupest | 2020-01-31 | 3 | -18/+10 |
| | | | | user info. | ||||
* | Fix a bug in url generation and add development database migration. | crupest | 2020-01-31 | 5 | -62/+420 |
| | |||||
* | Combine two user info types. | crupest | 2020-01-31 | 4 | -45/+30 |
| | |||||
* | ... | crupest | 2020-01-31 | 7 | -14/+230 |
| | |||||
* | Finish reafctor, TODO: Database migration. | crupest | 2020-01-30 | 8 | -19/+32 |
| | |||||
* | ... | crupest | 2020-01-30 | 49 | -1473/+521 |
| | |||||
* | ... | crupest | 2020-01-29 | 11 | -127/+207 |
| | |||||
* | ... | crupest | 2020-01-29 | 24 | -1113/+265 |
| | |||||
* | ... | crupest | 2020-01-29 | 30 | -388/+1069 |
| | |||||
* | Upgrade library version. | crupest | 2020-01-24 | 1 | -4/+4 |
| | |||||
* | ... | crupest | 2020-01-23 | 10 | -117/+95 |
| | |||||
* | ... | crupest | 2020-01-21 | 26 | -281/+391 |
| | |||||
* | Basically finish refactor of error codes. | crupest | 2020-01-19 | 3 | -6/+5 |
| | |||||
* | ... | crupest | 2020-01-18 | 35 | -1538/+725 |
| | |||||
* | Fix a bug in delete post. | crupest | 2020-01-17 | 1 | -2/+0 |
| | |||||
* | Fix a bug in wrong message of BadPasswordException. | crupest | 2020-01-12 | 2 | -6/+2 |
| | |||||
* | Use sqlite development database. | crupest | 2020-01-05 | 18 | -41/+1219 |
| | |||||
* | Fix the format in date string. | crupest | 2019-12-11 | 1 | -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. | crupest | 2019-12-10 | 1 | -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/Timeline | crupest | 2019-12-10 | 3 | -5/+38 |
|\ | |||||
| * | Migrate to System.Text.Json . Format enum to string instead of number. Use ↵ | crupest | 2019-11-20 | 3 | -5/+38 |
| | | | | | | | | ISO8601 format for datetime. | ||||
* | | Migrate to DotNetCore 3.1 . | crupest | 2019-12-10 | 1 | -7/+6 |
|/ | |||||
* | Update packages and migrate database. | crupest | 2019-11-20 | 4 | -12/+644 |
| | |||||
* | Get posts should return posts ordered by time. | crupest | 2019-11-20 | 1 | -1/+1 |
| |