diff options
author | Azul <azul@leap.se> | 2012-12-22 15:51:24 +0100 |
---|---|---|
committer | Azul <azul@leap.se> | 2012-12-22 15:51:24 +0100 |
commit | 04376c286daee0165f6544ecdafaa645aa7695c0 (patch) | |
tree | d17da06435217eb78cfcb1867efe5ec9d868c22a /users/app/models | |
parent | 9a23a5d63b2b5bcb1994137a5de9f8ebd88142f1 (diff) |
moving the js for view definitions into separate files
This way we get syntax highlighting and so on.
Diffstat (limited to 'users/app/models')
-rw-r--r-- | users/app/models/user.rb | 29 |
1 files changed, 1 insertions, 28 deletions
diff --git a/users/app/models/user.rb b/users/app/models/user.rb index 2a8a57b..1798ea4 100644 --- a/users/app/models/user.rb +++ b/users/app/models/user.rb @@ -46,37 +46,10 @@ class User < CouchRest::Model::Base timestamps! design do + load_views(Rails.root.join('users', 'app', 'designs', 'user')) view :by_login view :by_created_at view :by_email - - view :by_email_alias, - :map => <<-EOJS - function(doc) { - if (doc.type != 'User') { - return; - } - doc.email_aliases.forEach(function(alias){ - emit(alias.email, doc); - }); - } - EOJS - - view :by_email_or_alias, - :map => <<-EOJS - function(doc) { - if (doc.type != 'User') { - return; - } - if (doc.email) { - emit(doc.email, doc); - } - doc.email_aliases.forEach(function(alias){ - emit(alias.email, doc); - }); - } - EOJS - end class << self |