]> cat aescling's git repositories - mastodon.git/commit
Adding hashtags
authorEugen Rochko <eugen@zeonfederated.com>
Sat, 5 Nov 2016 14:20:05 +0000 (15:20 +0100)
committerEugen Rochko <eugen@zeonfederated.com>
Sat, 5 Nov 2016 16:13:14 +0000 (17:13 +0100)
commit48b9619439818ecb344ae33c9c31a55ecb1aa27a
treeef350e3ebf2563adbe4d57778a08f561d912415f
parent62292797eccc5bcf47abae9f4daaa2c186660644
Adding hashtags
33 files changed:
app/assets/javascripts/components/actions/timelines.jsx
app/assets/javascripts/components/components/status_content.jsx
app/assets/javascripts/components/containers/mastodon.jsx
app/assets/javascripts/components/features/account/index.jsx
app/assets/javascripts/components/features/hashtag_timeline/index.jsx [new file with mode: 0644]
app/assets/javascripts/components/features/ui/containers/status_list_container.jsx
app/assets/javascripts/components/reducers/timelines.jsx
app/channels/application_cable/channel.rb
app/channels/hashtag_channel.rb [new file with mode: 0644]
app/channels/public_channel.rb
app/channels/timeline_channel.rb
app/controllers/api/v1/statuses_controller.rb
app/controllers/tags_controller.rb [new file with mode: 0644]
app/helpers/atom_builder_helper.rb
app/helpers/tags_helper.rb [new file with mode: 0644]
app/lib/feed_manager.rb
app/lib/formatter.rb
app/models/status.rb
app/models/stream_entry.rb
app/models/tag.rb
app/services/fan_out_on_write_service.rb
app/services/post_status_service.rb
app/services/process_feed_service.rb
app/services/process_hashtags_service.rb [new file with mode: 0644]
app/views/api/v1/statuses/_show.rabl
app/views/api/v1/statuses/_tags.rabl [new file with mode: 0644]
app/views/tags/show.html.haml [new file with mode: 0644]
config/routes.rb
db/migrate/20161105130633_create_statuses_tags_join_table.rb [new file with mode: 0644]
db/schema.rb
spec/controllers/api/v1/statuses_controller_spec.rb
spec/controllers/tags_controller_spec.rb [new file with mode: 0644]
spec/helpers/tags_helper_spec.rb [new file with mode: 0644]