]> cat aescling's git repositories - mastodon.git/commit
Add ability to follow hashtags (#18809)
authorEugen Rochko <eugen@zeonfederated.com>
Sun, 17 Jul 2022 11:49:29 +0000 (13:49 +0200)
committeraescling <aescling+gitlab@cat.family>
Mon, 5 Sep 2022 04:27:55 +0000 (00:27 -0400)
commit6d3ee881969a15c05783acc5f6caadae326f0f15
treeee059f69916da59f1dabcd4acb5d45a496ba98dd
parent19a6e7f88e393dfc940e20e4c11eb89538d61aab
Add ability to follow hashtags (#18809)
18 files changed:
app/controllers/api/v1/featured_tags/suggestions_controller.rb
app/controllers/api/v1/followed_tags_controller.rb [new file with mode: 0644]
app/controllers/api/v1/tags_controller.rb [new file with mode: 0644]
app/controllers/api/v1/trends/tags_controller.rb
app/lib/feed_manager.rb
app/models/tag.rb
app/models/tag_follow.rb [new file with mode: 0644]
app/presenters/tag_relationships_presenter.rb [new file with mode: 0644]
app/serializers/rest/tag_serializer.rb
app/services/fan_out_on_write_service.rb
app/workers/feed_insert_worker.rb
config/routes.rb
db/migrate/20220714171049_create_tag_follows.rb [new file with mode: 0644]
db/schema.rb
spec/controllers/api/v1/followed_tags_controller_spec.rb [new file with mode: 0644]
spec/controllers/api/v1/tags_controller_spec.rb [new file with mode: 0644]
spec/fabricators/tag_follow_fabricator.rb [new file with mode: 0644]
spec/models/tag_follow_spec.rb [new file with mode: 0644]