Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,6 @@ results
npm-debug.log
smart.lock

.idea
.idea
docs/
node_modules/
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ var users = [
{name:"Admin User",email:"admin@example.com",roles:['admin']}
];

_.each(users, function (user) {
users.forEach(function (user) {
var id;

id = Accounts.createUser({
Expand All @@ -218,7 +218,7 @@ _.each(users, function (user) {
});

if (user.roles.length > 0) {
_.each(user.roles, function (role) {
user.roles.forEach(function (role) {
Roles.createRole(role, {unlessExists: true});
});
// Need _id of existing user record so this call must come after `Accounts.createUser`.
Expand Down
25 changes: 0 additions & 25 deletions docs/api.js

This file was deleted.

Binary file removed docs/assets/css/external-small.png
Binary file not shown.
Binary file removed docs/assets/css/logo.png
Binary file not shown.
Loading