diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2016-10-27 21:59:56 +0200 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2016-10-27 21:59:56 +0200 |
commit | 1c84d505c8cb926710d059725c5a2d966dd4736b (patch) | |
tree | c4ff6e08948a6432ce8f966c4ba8b5d7e11adb28 /app/assets/javascripts/components/containers | |
parent | 909d0d5e88b046f8bb69c893c54944bb2aad12cf (diff) |
Adding following/followers lists to the UI
Diffstat (limited to 'app/assets/javascripts/components/containers')
-rw-r--r-- | app/assets/javascripts/components/containers/mastodon.jsx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app/assets/javascripts/components/containers/mastodon.jsx b/app/assets/javascripts/components/containers/mastodon.jsx index 8e1becbda..3a04ebb09 100644 --- a/app/assets/javascripts/components/containers/mastodon.jsx +++ b/app/assets/javascripts/components/containers/mastodon.jsx @@ -26,6 +26,8 @@ import AccountTimeline from '../features/account_timeline'; import HomeTimeline from '../features/home_timeline'; import MentionsTimeline from '../features/mentions_timeline'; import Compose from '../features/compose'; +import Followers from '../features/followers'; +import Following from '../features/following'; const store = configureStore(); @@ -83,6 +85,8 @@ const Mastodon = React.createClass({ <Route path='/statuses/:statusId' component={Status} /> <Route path='/accounts/:accountId' component={Account}> <IndexRoute component={AccountTimeline} /> + <Route path='/accounts/:accountId/followers' component={Followers} /> + <Route path='/accounts/:accountId/following' component={Following} /> </Route> </Route> </Router> |