-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add some search capabilities + coordinates search with mongo
- Loading branch information
1 parent
b1e04e2
commit 2f598f1
Showing
7 changed files
with
94 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,18 @@ | ||
|
||
Browse/search users | ||
User geolocalisation. | ||
|
||
Make sure logout users are redirected to the front page, always. | ||
|
||
Check user security: do not allow user to change all their profile. | ||
Check filepicker secret/security thingy. Not sure it's cool. | ||
|
||
|
||
Setting page | ||
|
||
Thing needs serious design work. Finish notification template (for single notification) | ||
Complete Lexicon... | ||
|
||
Subscription process + email validation. | ||
|
||
Check input security (not too long, invalid characters, injection...). | ||
Fix Bug in Profile page. | ||
|
||
Find a way to factorize some client code. | ||
Find a way to factorize some client code. | ||
|
||
Still have some presence with empty users!!! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
//User collection defined by default | ||
|
||
Meteor.users.allow({ | ||
update: function(){ return false ;}, | ||
remove: function(){ return false ;}, | ||
insert: function(){ return false ;} | ||
}); | ||
|
||
if(Meteor.isServer){ | ||
Meteor.users._ensureIndex({'loc':"2d"}); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.