forked from torrust/torrust-index
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge torrust#298: Persist torrent
comment
8821346 doc: add some comments for BEP 30 implementation (Jose Celano) dfdac19 refator: [torrust#296] move logic to service layer (Jose Celano) 1660fd5 refactor: [torrust#296] rename vars (Jose Celano) b6fe36b refactor: [torrust#296] extract duplicate code (Jose Celano) f0ad6a4 refactor: rename structs and reorganize mods (Jose Celano) e9476fc feat: [torrust#296] persist torrent comment (Jose Celano) eb26c8d fix: tag name for random tag in tests (Jose Celano) Pull request description: And add it to the API responses. - Torrent details endpoint - Torrent list endpoint - Include the `comment` in the downloaded torrent ACKs for top commit: josecelano: ACK 8821346 Tree-SHA512: d2203d759ab6a8eaeca413928b580d5be26ebb4041d9f11067a223a187cfd606c4d4380f41e935c3516d635a6225534abba88d5696f18f5c17d72e899d69291f
- Loading branch information
Showing
14 changed files
with
440 additions
and
297 deletions.
There are no files selected for viewing
1 change: 1 addition & 0 deletions
1
migrations/mysql/20230918103654_torrust_add_comment_field_to_torrent.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
ALTER TABLE torrust_torrents ADD COLUMN comment TEXT NULL; |
1 change: 1 addition & 0 deletions
1
migrations/sqlite3/20230918103654_torrust_add_comment_field_to_torrent.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
ALTER TABLE "torrust_torrents" ADD COLUMN "comment" TEXT NULL; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.