2016-02-16 15:08:30 +09:00
|
|
|
// common
|
|
|
|
|
|
|
|
Telescope.registerComponent("Footer", require('./common/Footer.jsx'));
|
|
|
|
Telescope.registerComponent("Header", require('./common/Header.jsx'));
|
|
|
|
Telescope.registerComponent("Layout", require('./common/Layout.jsx'));
|
|
|
|
Telescope.registerComponent("Logo", require('./common/Logo.jsx'));
|
2016-02-23 13:10:08 +09:00
|
|
|
Telescope.registerComponent("Flash", require('./common/Flash.jsx'));
|
2016-03-18 10:50:40 +09:00
|
|
|
Telescope.registerComponent("FlashMessages", require('./common/FlashMessages.jsx'));
|
2016-03-18 11:53:46 +09:00
|
|
|
Telescope.registerComponent("NewsletterForm", require('./common/NewsletterForm.jsx'));
|
2016-03-21 10:27:43 +09:00
|
|
|
Telescope.registerComponent("Icon", require('./common/Icon.jsx'));
|
2016-02-16 15:08:30 +09:00
|
|
|
|
|
|
|
// posts
|
2016-02-15 22:33:44 +09:00
|
|
|
|
|
|
|
Telescope.registerComponent("LoadMore", require('./posts/list/LoadMore.jsx'));
|
|
|
|
Telescope.registerComponent("NoMorePosts", require('./posts/list/NoMorePosts.jsx'));
|
|
|
|
Telescope.registerComponent("NoPosts", require('./posts/list/NoPosts.jsx'));
|
|
|
|
Telescope.registerComponent("PostItem", require('./posts/list/PostItem.jsx'));
|
|
|
|
Telescope.registerComponent("PostsLoading", require('./posts/list/PostsLoading.jsx'));
|
2016-02-17 17:22:32 +09:00
|
|
|
Telescope.registerComponent("PostViews", require('./posts/list/PostViews.jsx'));
|
2016-02-15 22:33:44 +09:00
|
|
|
Telescope.registerComponent("PostList", require('./posts/list/PostList.jsx'));
|
2016-02-17 17:22:32 +09:00
|
|
|
Telescope.registerComponent("PostCategories", require('./posts/list/PostCategories.jsx'));
|
2016-02-19 10:12:08 +09:00
|
|
|
Telescope.registerComponent("PostCommenters", require('./posts/list/PostCommenters.jsx'));
|
2016-02-15 22:33:44 +09:00
|
|
|
Telescope.registerComponent("Post", require('./posts/Post.jsx'));
|
2016-03-21 10:27:43 +09:00
|
|
|
Telescope.registerComponent("PostStats", require('./posts/PostStats.jsx'));
|
|
|
|
Telescope.registerComponent("Vote", require('./posts/Vote.jsx'));
|
2016-02-16 16:12:13 +09:00
|
|
|
|
|
|
|
// comments
|
|
|
|
|
|
|
|
Telescope.registerComponent("CommentItem", require('./comments/list/CommentItem.jsx'));
|
2016-02-17 11:28:00 +09:00
|
|
|
Telescope.registerComponent("CommentList", require('./comments/list/CommentList.jsx'));
|
2016-02-18 17:53:04 +09:00
|
|
|
Telescope.registerComponent("CommentNode", require('./comments/list/CommentNode.jsx'));
|
|
|
|
Telescope.registerComponent("CommentNew", require('./comments/list/CommentNew.jsx'));
|
2016-02-18 21:39:33 +09:00
|
|
|
Telescope.registerComponent("CommentEdit", require('./comments/list/CommentEdit.jsx'));
|
2016-02-17 11:28:00 +09:00
|
|
|
|
|
|
|
// categories
|
|
|
|
|
2016-02-22 13:23:46 +09:00
|
|
|
Telescope.registerComponent("CategoriesList", require('./categories/list/CategoriesList.jsx'));
|
|
|
|
|
|
|
|
// permissions
|
2016-02-23 11:34:40 +09:00
|
|
|
|
2016-02-22 13:23:46 +09:00
|
|
|
Telescope.registerComponent("CanCreatePost", require('./permissions/CanCreatePost.jsx'));
|
|
|
|
Telescope.registerComponent("CanEditPost", require('./permissions/CanEditPost.jsx'));
|
|
|
|
Telescope.registerComponent("CanView", require('./permissions/CanView.jsx'));
|
|
|
|
Telescope.registerComponent("CanViewPost", require('./permissions/CanViewPost.jsx'));
|
2016-02-23 11:34:40 +09:00
|
|
|
Telescope.registerComponent("CanEditUser", require('./permissions/CanEditUser.jsx'));
|
|
|
|
|
|
|
|
// users
|
|
|
|
|
2016-02-23 21:35:54 +09:00
|
|
|
Telescope.registerComponent("UsersEdit", require('./users/UsersEdit.jsx'));
|
|
|
|
Telescope.registerComponent("UsersSingle", require('./users/UsersSingle.jsx'));
|
2016-03-19 18:19:28 +09:00
|
|
|
Telescope.registerComponent("UserAvatar", require('./users/UserAvatar.jsx'));
|
2016-03-19 10:15:36 +09:00
|
|
|
|
|
|
|
// debug
|
|
|
|
|
|
|
|
Telescope.registerComponent("Cheatsheet", require('./debug/Cheatsheet.jsx'));
|
|
|
|
|