Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/techx/quill
Browse files Browse the repository at this point in the history
  • Loading branch information
jlin816 committed Jul 10, 2017
2 parents 6116ab2 + 31609e5 commit 0aace5c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,11 @@ On the Settings tab, admins can easily control their event application timeline

# Setup

Getting a local instance of Quill up and running takes less than 5 minutes! Start by setting up the database:
Getting a local instance of Quill up and running takes less than 5 minutes! Start by setting up the database. Ideally, you should run MongoDB as a daemon with a secure configuration (with most linux distributions, you should be able to install it with your package manager, and it'll be set up as a daemon). Although not recommended for production, when running locally for development, you could do it like this

```
mkdir db
mongod --dbpath db
mongod --dbpath db --bind_ip 127.0.0.1 --nohttpinterface
```

Install the necessary dependencies:
Expand Down
2 changes: 1 addition & 1 deletion app/client/views/admin/users/adminUsersCtrl.js
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ angular.module('reg')
fields: [
{
name: 'Phone Number',
value: user.confirmation.phone
value: user.confirmation.phoneNumber
},{
name: 'Dietary Restrictions',
value: user.confirmation.dietaryRestrictions.join(', ')
Expand Down
6 changes: 5 additions & 1 deletion app/client/views/team/teamCtrl.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ angular.module('reg')

$scope.TEAM = TEAM;

if ($scope.user.teamCode){
function _populateTeammates() {
UserService
.getMyTeammates()
.success(function(users){
Expand All @@ -25,6 +25,10 @@ angular.module('reg')
});
}

if ($scope.user.teamCode){
_populateTeammates();
}

$scope.joinTeam = function(){
UserService
.joinOrCreateTeam($scope.code)
Expand Down

0 comments on commit 0aace5c

Please sign in to comment.