2015-04-22 07:50:11 +09:00
|
|
|
Package.describe({
|
|
|
|
name: 'telescope:users',
|
|
|
|
summary: 'Telescope permissions.',
|
2015-06-05 11:39:36 +09:00
|
|
|
version: '0.20.5',
|
2015-05-16 12:05:53 +09:00
|
|
|
git: "https://github.com/TelescopeJS/Telescope.git"
|
2015-04-22 07:50:11 +09:00
|
|
|
});
|
|
|
|
|
|
|
|
Package.onUse(function (api) {
|
|
|
|
|
|
|
|
api.versionsFrom(['METEOR@1.0']);
|
|
|
|
|
|
|
|
api.use([
|
2015-06-05 11:39:36 +09:00
|
|
|
'telescope:lib@0.20.5',
|
|
|
|
'telescope:settings@0.20.5',
|
|
|
|
'telescope:i18n@0.20.5'
|
2015-04-22 07:50:11 +09:00
|
|
|
]);
|
|
|
|
|
|
|
|
api.addFiles([
|
2015-05-06 16:41:15 +09:00
|
|
|
'package-tap.i18n',
|
2015-04-27 17:15:16 +09:00
|
|
|
'lib/namespace.js',
|
|
|
|
'lib/roles.js',
|
|
|
|
'lib/permissions.js',
|
2015-04-22 07:50:11 +09:00
|
|
|
'lib/users.js',
|
2015-04-22 12:34:23 +09:00
|
|
|
'lib/avatars.js',
|
2015-04-23 17:45:37 +09:00
|
|
|
'lib/callbacks.js',
|
|
|
|
'lib/modules.js',
|
2015-04-22 07:50:11 +09:00
|
|
|
'lib/helpers.js',
|
2015-04-28 15:54:19 +09:00
|
|
|
'lib/menu.js',
|
2015-04-22 08:31:11 +09:00
|
|
|
'lib/pubsub.js',
|
2015-05-06 12:28:00 +09:00
|
|
|
'lib/methods.js',
|
2015-04-22 08:13:43 +09:00
|
|
|
'lib/routes.js'
|
2015-04-22 07:50:11 +09:00
|
|
|
], ['client', 'server']);
|
|
|
|
|
2015-04-22 12:20:21 +09:00
|
|
|
api.addFiles([
|
|
|
|
'lib/client/templates/account/user_account.html',
|
|
|
|
'lib/client/templates/account/user_account.js',
|
2015-05-16 13:13:45 +09:00
|
|
|
'lib/client/templates/account/user_password.html',
|
|
|
|
'lib/client/templates/account/user_password.js',
|
2015-04-22 12:20:21 +09:00
|
|
|
'lib/client/templates/dashboard/users-dashboard.html',
|
|
|
|
'lib/client/templates/dashboard/users-dashboard.js',
|
|
|
|
'lib/client/templates/dashboard/users_list_actions.html',
|
|
|
|
'lib/client/templates/dashboard/users_list_actions.js',
|
|
|
|
'lib/client/templates/dashboard/users_list_avatar.html',
|
|
|
|
'lib/client/templates/dashboard/users_list_created_at.html',
|
|
|
|
'lib/client/templates/dashboard/users_list_email.html',
|
|
|
|
'lib/client/templates/dashboard/users_list_username.html',
|
2015-05-14 16:42:19 +09:00
|
|
|
'lib/client/templates/dashboard/users_list_display_name.html',
|
2015-04-22 12:20:21 +09:00
|
|
|
'lib/client/templates/profile/user_comments.html',
|
|
|
|
'lib/client/templates/profile/user_comments.js',
|
|
|
|
'lib/client/templates/profile/user_downvoted_posts.html',
|
|
|
|
'lib/client/templates/profile/user_downvoted_posts.js',
|
|
|
|
'lib/client/templates/profile/user_info.html',
|
|
|
|
'lib/client/templates/profile/user_info.js',
|
|
|
|
'lib/client/templates/profile/user_posts.html',
|
|
|
|
'lib/client/templates/profile/user_posts.js',
|
|
|
|
'lib/client/templates/profile/user_upvoted_posts.html',
|
|
|
|
'lib/client/templates/profile/user_upvoted_posts.js',
|
2015-05-16 12:34:50 +09:00
|
|
|
'lib/client/templates/profile/user_profile_bio.html',
|
|
|
|
'lib/client/templates/profile/user_profile_twitter.html',
|
2015-04-22 12:20:21 +09:00
|
|
|
'lib/client/templates/sign_out.html',
|
|
|
|
'lib/client/templates/user_edit.html',
|
2015-05-06 12:56:59 +09:00
|
|
|
'lib/client/templates/user_complete.html',
|
|
|
|
'lib/client/templates/user_complete.js',
|
2015-04-22 12:20:21 +09:00
|
|
|
'lib/client/templates/user_item.html',
|
|
|
|
'lib/client/templates/user_item.js',
|
2015-04-29 12:16:14 +09:00
|
|
|
'lib/client/templates/user_profile.html'
|
2015-04-22 12:20:21 +09:00
|
|
|
], ['client']);
|
|
|
|
|
2015-04-22 08:31:11 +09:00
|
|
|
api.addFiles([
|
|
|
|
'lib/server/publications.js',
|
2015-05-06 12:28:00 +09:00
|
|
|
'lib/server/create_user.js'
|
2015-04-22 08:31:11 +09:00
|
|
|
], ['server']);
|
|
|
|
|
2015-05-06 16:41:15 +09:00
|
|
|
api.addFiles([
|
2015-06-15 19:05:42 +09:00
|
|
|
"i18n/ar.i18n.json",
|
|
|
|
"i18n/bg.i18n.json",
|
|
|
|
"i18n/de.i18n.json",
|
|
|
|
"i18n/el.i18n.json",
|
2015-05-06 16:50:12 +09:00
|
|
|
"i18n/en.i18n.json",
|
2015-06-15 19:05:42 +09:00
|
|
|
"i18n/es.i18n.json",
|
|
|
|
"i18n/fr.i18n.json",
|
|
|
|
"i18n/it.i18n.json"
|
2015-05-06 16:41:15 +09:00
|
|
|
], ["client", "server"]);
|
|
|
|
|
2015-04-22 07:50:11 +09:00
|
|
|
api.export('Users');
|
|
|
|
|
|
|
|
});
|