Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create light admin interface #50

Open
dahnag opened this issue May 2, 2018 · 1 comment
Open

Create light admin interface #50

dahnag opened this issue May 2, 2018 · 1 comment
Assignees
Milestone

Comments

@dahnag
Copy link
Contributor

dahnag commented May 2, 2018

Specific need: mechanism for contacting all users. The easiest implementation would likely be the ability to extract email addresses.

The ideal is to set this up in a way that will be extensible.

Email address access is a V2 issue; anything else will be V3.

@dahnag dahnag added this to the Version 2 milestone May 2, 2018
@lovettbarron
Copy link
Member

lovettbarron commented Jun 14, 2018

Note, this is a good initial mongo query:

db.users.aggregate([
   {
     $lookup:
       {
         from: "profiles",
         localField: "_id",
         foreignField: "userid",
         as: "user_profiles"
       }
  },
  {
     $lookup:
       {
         from: "grants",
         localField: "_id",
         foreignField: "userid",
         as: "seeker"
       }
  },
   {
     $lookup:
       {
         from: "makers",
         localField: "_id",
         foreignField: "userid",
         as: "maker"
       }
  }
])

@MelissaSines MelissaSines modified the milestones: Version 2, Maintenance Jul 29, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants