This commit is contained in:
@@ -5,11 +5,6 @@ eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpYXQiOiIxNTcxODU5OTU0IiwiZXhwIjoiMTU3MjQ
|
||||
|
||||
## IMMEDIATE ITEMS
|
||||
|
||||
UPDATE all the things before commencing work
|
||||
- Update client end
|
||||
|
||||
|
||||
|
||||
|
||||
-------------------------------------------------------------------------------------------------------------------------------------
|
||||
Need a sprint to get to a fully testable client with entry form, list and as much as possible all features from COMMON-* specs list
|
||||
@@ -21,15 +16,15 @@ REALLY MAKING MORE PROGRESS WHEN CLIENT DEV DRIVES BACKEND DEV, STICK TO THAT!!
|
||||
|
||||
TODO: return the list as objects as specified
|
||||
|
||||
TODO: Make a joined table list for development
|
||||
- Widget->User->emailaddress
|
||||
- Modify Widget, add UserId to it (maybe prepared by like a quote)
|
||||
- Modify all the widget related code to work with this and also populate it
|
||||
- Going to need to modify a lot of shit for this at the client too but it's necessary to be on the right path now
|
||||
TODO: Make a joined table list for development
|
||||
- Widget list with User and their email
|
||||
- Working query:
|
||||
Select awidget.id as widgetid, awidget.name, auser.name, auser.id as userid, auseroptions.emailaddress from awidget left outer join auser on (awidget.userid=auser.id) left outer join auseroptions on (auser.id=auseroptions.userid)
|
||||
|
||||
/*
|
||||
Select awidget.id as widgetid, awidget.name as widgetname, auser.name as username, auser.id as userid, auseroptions.emailaddress
|
||||
from awidget
|
||||
left outer join auser on (awidget.userid=auser.id)
|
||||
left outer join auseroptions on (auser.id=auseroptions.userid)
|
||||
*/
|
||||
|
||||
CLIENT CUSTOM FIELDS CHANGE
|
||||
- Must use numeric instead of text values now
|
||||
|
||||
Reference in New Issue
Block a user