Skip to content

Commit

Permalink
Update config file
Browse files Browse the repository at this point in the history
  • Loading branch information
eprochasson committed Jul 21, 2013
1 parent 2f598f1 commit c67774d
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion main.config.sample
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,12 @@ if(Meteor.isServer){
Meteor.users.myProfileInformation = {
'profile': 1,
'friends': 1,
'settings': 1
'settings': 1,
'profile_complete': 1
};

Meteor.users.searchResultsLimit = 10;

/*
Post cooldown configuration
*/
Expand Down Expand Up @@ -107,3 +110,9 @@ Meteor.GMap.minZoomLevel = 4;
Meteor.GMap.maxZoomLevel = 6;
// Order list of favorite type for the reverse geocoding. Sort by preference order and the algorithm will try to pick the best match.
Meteor.GMap.favoriteGeocodingType = ['administrative_area_level_2', 'administrative_area_level_1', 'locality', 'country'];

// User profile creation process
Meteor.profileCreation = {};
Meteor.profileCreation.numberOfStep = 3;
// Profile won't be validated/completed/published until all those profile fields are set.
Meteor.profileCreation.requiredFieldForCompletion = ['name','location','gender','picture','geocoding','dob'];

0 comments on commit c67774d

Please sign in to comment.