DB Collections and Models - TitanNano/MakeMyIdea GitHub Wiki
##Auth-Flows
- Collection Name: auth-flows
- Model: AuthFlow
{
flowNonce : {string}, /** UNIQUE **/
type : {string},
expires : {number}
accessToken : {string}
}
##Projects
- Collection Name: projects
- Model: Project
{
title : {string},
categories : {string[]},
description : {string},
picture: {string},
members : [{count : {number}, type : {string}, users : {string[]}}],
owner : {string},
finished : {boolean}
}