流星サイトに追加したい管理機能がいくつかあり、それらを作成、非表示、保護するための最良の方法は何ですか?
ありがとう
Meteor.methodsを使用できます。server/
コードをEgというフォルダに配置して、サーバーにのみ含めるようにしてください。
server/admin.js
Meteor.methods({
foo: function (arg1, arg2) {
// confirm that the user is an admin
if ( ! this.user.isAdmin )
throw new Meteor.Error(401, "You are not authorized to perform this action");
// perform task
return "some return value";
}
});