diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2016-11-03 20:16:14 +0100 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2016-11-03 20:16:14 +0100 |
commit | 6d26bfd14706872f6e4d1c3a3e45b00d81cf86cb (patch) | |
tree | 2277f67ffb45c76ea83f1b8416e726eb48f9c415 /app/assets/javascripts/components/containers | |
parent | 0405ef977a3ba37b3da472733e59be6db7bd7b99 (diff) |
Add list of who reblogged status
Diffstat (limited to 'app/assets/javascripts/components/containers')
-rw-r--r-- | app/assets/javascripts/components/containers/mastodon.jsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/assets/javascripts/components/containers/mastodon.jsx b/app/assets/javascripts/components/containers/mastodon.jsx index 3a04ebb09..a6c52f2a7 100644 --- a/app/assets/javascripts/components/containers/mastodon.jsx +++ b/app/assets/javascripts/components/containers/mastodon.jsx @@ -28,6 +28,7 @@ import MentionsTimeline from '../features/mentions_timeline'; import Compose from '../features/compose'; import Followers from '../features/followers'; import Following from '../features/following'; +import Reblogs from '../features/reblogs'; const store = configureStore(); @@ -83,6 +84,7 @@ const Mastodon = React.createClass({ <Route path='/statuses/mentions' component={MentionsTimeline} /> <Route path='/statuses/all' component={PublicTimeline} /> <Route path='/statuses/:statusId' component={Status} /> + <Route path='/statuses/:statusId/reblogs' component={Reblogs} /> <Route path='/accounts/:accountId' component={Account}> <IndexRoute component={AccountTimeline} /> <Route path='/accounts/:accountId/followers' component={Followers} /> |