Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | ... | crupest | 2020-01-21 | 33 | -298/+408 |
| | |||||
* | Basically finish refactor of error codes. | crupest | 2020-01-19 | 13 | -62/+65 |
| | |||||
* | ... | crupest | 2020-01-18 | 42 | -1549/+895 |
| | |||||
* | Fix a bug in delete post. | crupest | 2020-01-17 | 1 | -2/+0 |
| | |||||
* | Specify RID in publish to reduce artifitial size. | crupest | 2020-01-17 | 1 | -1/+1 |
| | |||||
* | Update CI. | crupest | 2020-01-17 | 1 | -5/+2 |
| | |||||
* | Update CI. | crupest | 2020-01-16 | 1 | -9/+12 |
| | |||||
* | Fix a bug in wrong message of BadPasswordException. | crupest | 2020-01-12 | 2 | -6/+2 |
| | |||||
* | Update README. | crupest | 2020-01-05 | 1 | -1/+19 |
| | |||||
* | Use sqlite development database. | crupest | 2020-01-05 | 21 | -70/+1223 |
| | |||||
* | 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 | 5 | -8/+66 |
|\ | |||||
| * | Merge pull request #55 from crupest/format | 杨宇千 | 2019-11-20 | 5 | -8/+66 |
| |\ | | | | | | | Fix some format problems. | ||||
| | * | Add test for bad enum value of timeline visibility. | crupest | 2019-11-20 | 1 | -0/+6 |
| | | | |||||
| | * | Migrate to System.Text.Json . Format enum to string instead of number. Use ↵ | crupest | 2019-11-20 | 4 | -8/+60 |
| |/ | | | | | | | ISO8601 format for datetime. | ||||
* / | Migrate to DotNetCore 3.1 . | crupest | 2019-12-10 | 4 | -14/+14 |
|/ | |||||
* | Update CI. | crupest | 2019-11-20 | 1 | -29/+33 |
| | |||||
* | Update packages and migrate database. | crupest | 2019-11-20 | 5 | -15/+647 |
| | |||||
* | Merge pull request #54 from crupest/timeline | 杨宇千 | 2019-11-20 | 54 | -518/+3243 |
|\ | | | | | Add core feature Timeline (currently only personal timeline) | ||||
| * | Get posts should return posts ordered by time. | crupest | 2019-11-20 | 2 | -2/+29 |
| | | |||||
| * | Change post content to null instead of delete the entity when deleting post. | crupest | 2019-11-20 | 1 | -2/+4 |
| | | |||||
| * | Add delete nonexist post test, and fix the bug. | crupest | 2019-11-20 | 2 | -6/+13 |
| | | |||||
| * | Clean and refactor tests. | crupest | 2019-11-20 | 22 | -462/+396 |
| | | |||||
| * | Complete integrated tests??? Fix bugs. | crupest | 2019-11-19 | 10 | -72/+320 |
| | | |||||
| * | Clean project files. | crupest | 2019-11-18 | 2 | -151/+140 |
| | | |||||
| * | Continue to write tests. | crupest | 2019-11-18 | 3 | -2/+50 |
| | | |||||
| * | Write tests and fix bugs found via tests. | crupest | 2019-11-18 | 8 | -23/+157 |
| | | |||||
| * | Fix typo in path of personal timeline controller actions. Add timeline ↵ | crupest | 2019-11-17 | 6 | -8/+120 |
| | | | | | | | | permission test. | ||||
| * | Complete personal timeline service without tests. | crupest | 2019-11-17 | 1 | -5/+121 |
| | | |||||
| * | WIP : Write timeline service. | 杨宇千 | 2019-11-13 | 5 | -11/+336 |
| | | |||||
| * | Complete personal timeline controller unit tests. | 杨宇千 | 2019-11-12 | 5 | -21/+209 |
| | | |||||
| * | Add PersonalTimelineController PostOperationCreate unit tests. | 杨宇千 | 2019-11-09 | 3 | -15/+82 |
| | | |||||
| * | Add Get method tests for PersonalTimelineController. | 杨宇千 | 2019-11-07 | 2 | -12/+99 |
| | | |||||
| * | Complete PersonalTimelineController and write attribute test. | 杨宇千 | 2019-11-07 | 15 | -53/+406 |
| | | |||||
| * | Add controller primarily and of course redesign the service accordingly. | 杨宇千 | 2019-11-04 | 9 | -33/+575 |
| | | |||||
| * | Complete designing timeline service though there may be many bugs in the design. | 杨宇千 | 2019-11-04 | 6 | -22/+125 |
| | | |||||
| * | WIP: Design the timeline service interface. | 杨宇千 | 2019-11-03 | 7 | -7/+320 |
| | | |||||
| * | Design the entity model primarily. | 杨宇千 | 2019-11-03 | 8 | -2/+132 |
|/ | |||||
* | Merge pull request #53 from crupest/nickname | 杨宇千 | 2019-10-31 | 72 | -1454/+2008 |
|\ | | | | | Add nickname support. | ||||
| * | Recreate database and migrations. | 杨宇千 | 2019-10-31 | 26 | -1220/+300 |
| | | |||||
| * | Complete integrated tests. | 杨宇千 | 2019-10-31 | 5 | -45/+121 |
| | | |||||
| * | Continue to construct feature and tests. | 杨宇千 | 2019-10-31 | 21 | -59/+302 |
| | | |||||
| * | Add UserDetailController unit tests. | 杨宇千 | 2019-10-28 | 9 | -0/+270 |
| | | |||||
| * | Add error code tests. | 杨宇千 | 2019-10-27 | 14 | -137/+535 |
| | | |||||
| * | Add user detail service. | 杨宇千 | 2019-10-25 | 12 | -12/+499 |
|/ | |||||
* | Merge pull request #52 from crupest/i18n | 杨宇千 | 2019-10-25 | 43 | -702/+864 |
|\ | | | | | Add NeutralResourcesLanguage. Conform to best practices. | ||||
| * | Add NeutralResourcesLanguage. Conform to best practices. | 杨宇千 | 2019-10-25 | 43 | -702/+864 |
|/ | |||||
* | Update CI. | 杨宇千 | 2019-10-24 | 1 | -0/+2 |
| | |||||
* | Fix a bug in auth handler. This is caused by my confusion in C# language. | 杨宇千 | 2019-10-24 | 1 | -1/+1 |
| |