aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #60 from crupest/devcrupest2020-02-226-32/+217
|\ | | | | Add visibility query filter in get timelines api.
| * Add visibility query filter in get timelines api.crupest2020-02-216-32/+217
|/
* Update README.mdcrupest2020-02-211-18/+0
|
* Merge pull request #59 from crupest/devcrupest2020-02-2132-1559/+465
|\ | | | | Migrate to sqlite.
| * Migrate at runtime in production environment.crupest2020-02-211-3/+16
| |
| * Move jwt token key from configuration to database and auto generatable.crupest2020-02-2120-27/+615
| |
| * Migrate to use sqlite.crupest2020-02-2126-1742/+47
| |
| * Update packages.crupest2020-02-202-7/+7
|/
* Revert CI.crupest2020-02-191-23/+18
|
* Improve relate filter.crupest2020-02-053-23/+92
|
* Add get timeline list feature.crupest2020-02-049-26/+201
|
* Add self link in entities.crupest2020-02-042-0/+5
|
* Merge pull request #57 from crupest/dev杨宇千2020-02-0324-176/+1128
|\ | | | | Add normal timeline feature.
| * Finish normal timeline development.crupest2020-02-034-3/+597
| |
| * Add TimelineController.crupest2020-02-039-37/+70
| |
| * Add copy to clipboard function to code generator.crupest2020-02-023-2/+13
| |
| * ...crupest2020-02-024-6/+183
| |
| * Add timeline service.crupest2020-02-0210-46/+172
| |
| * ...crupest2020-02-024-90/+101
|/
* Update CI.crupest2020-02-011-17/+20
|
* Merge pull request #56 from crupest/dev杨宇千2020-02-01131-5993/+3745
|\ | | | | Refactor API to be RESTful.
| * ...crupest2020-02-015-67/+336
| |
| * Make all patch return the new entity.crupest2020-01-316-31/+49
| |
| * Fix test bugs in user info mapper. Make create user action return created ↵crupest2020-01-315-21/+16
| | | | | | | | 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-318-68/+54
| |
| * ...crupest2020-01-319-26/+311
| |
| * Finish reafctor, TODO: Database migration.crupest2020-01-3014-47/+64
| |
| * ...crupest2020-01-304-172/+130
| |
| * ...crupest2020-01-3075-3635/+963
| |
| * ...crupest2020-01-2911-127/+207
| |
| * ...crupest2020-01-2925-1115/+267
| |
| * ...crupest2020-01-2936-407/+1086
| |
| * Finish UserTokenManagerTest.crupest2020-01-241-0/+81
| |
| * Upgrade library version.crupest2020-01-243-8/+40
| |
| * Add some unit tests for token manager.crupest2020-01-232-3/+52
| |
| * ...crupest2020-01-2313-136/+142
| |
| * ...crupest2020-01-2133-298/+408
| |
| * Basically finish refactor of error codes.crupest2020-01-1913-62/+65
| |
| * ...crupest2020-01-1842-1549/+895
|/
* Fix a bug in delete post.crupest2020-01-171-2/+0
|
* Specify RID in publish to reduce artifitial size.crupest2020-01-171-1/+1
|
* Update CI.crupest2020-01-171-5/+2
|
* Update CI.crupest2020-01-161-9/+12
|
* Fix a bug in wrong message of BadPasswordException.crupest2020-01-122-6/+2
|
* Update README.crupest2020-01-051-1/+19
|
* Use sqlite development database.crupest2020-01-0521-70/+1223
|
* 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-105-8/+66
|\