Log message #4032881

# At Username Text
# May 26th 2017, 14:22 deco @jeremyharris Yeah, that's what I'm looking for. Thanks!
# May 26th 2017, 14:22 jeremyharris so if you made those entities implement an interface that had a method, say getTotal that was implemented in each entity. Entity A’s getTotal might return it’s “total” property while entity B’s getTotal might return it’s “amount” property
# May 26th 2017, 14:22 spriz holy smokes - if there is no boilerplate function for a crud function even though it's enabled - it passes all auth :thinking_face:
# May 26th 2017, 14:21 jeremyharris deco yes you could. What I’m mean by the shared interface is, if you use ->match(‘propertyName’) it would *require* propertyName to exist on both types of entities
# May 26th 2017, 14:19 deco Or would I need to implement a shared interface for that?
# May 26th 2017, 14:19 deco @jeremyharris Ok. Could I then ->match() the hole collection for a key and retrieve both type of entities?
# May 26th 2017, 14:15 jeremyharris deco you could put them in a collection, but you’d just have to be aware of any differences when using collection methods (unless they have a shared interface you can rely on)
# May 26th 2017, 14:11 deco Good day! I have two type of entities can I create a collection with these two types? Or would it be wiser to put each entity type in it's own collection? I'm aggregating different data sets to generate a dashboard.
# May 26th 2017, 13:59 spriz if I remove the $this->loadComponent everything works - but as soon as I load Crud - there is no authentication or authorization
# May 26th 2017, 13:56 spriz although $this->Auth shows the right things in it :thinking_face:
# May 26th 2017, 13:56 spriz it doesn't get into the isAuthorized at all
# May 26th 2017, 13:56 spriz anyone have a tip on why my Crud controllers skip my Auth ? :thinking_face:
# May 26th 2017, 13:50 megan awesome :)
# May 26th 2017, 13:50 popperz0r found it! :slightly_smiling_face:
# May 26th 2017, 13:50 grymmjack @megan thanks. i'll check that out.
# May 26th 2017, 13:49 Neon1024 Ahok, was just curious
# May 26th 2017, 13:49 megan @neon1024 I will ask :slightly_smiling_face: (there may have been a slight sound issue on some of the vid's
# May 26th 2017, 13:48 Neon1024 Ah well, no big deal
# May 26th 2017, 13:47 Neon1024 I can see Jorge and Jose
# May 26th 2017, 13:47 Neon1024 Becuase I can’t see my face ;)
# May 26th 2017, 13:47 Neon1024 ORLY
# May 26th 2017, 13:47 dakota neon1024 I think they already have
# May 26th 2017, 13:47 popperz0r i searched for beforeFind but i didnt understood it
# May 26th 2017, 13:47 popperz0r Hey, how can i filter all results that are deleted = 1 from database?
# May 26th 2017, 13:47 Neon1024 Will last years videos be released?
# May 26th 2017, 13:46 megan https://cakefest.org/tickets The workshop is 8th/9th and its going to be streamed live (you can find the tickets there) (Once you get your ticket, you will get an email with the details to connect to the stream) - what is cool this year, is that they are going to take questions (which you will be able to send us over slack if you are streaming) and then they will answer those on the second day of the workshop
# May 26th 2017, 13:44 grymmjack @megan that sounds promising! where is that?
# May 26th 2017, 13:44 megan grymmjack - you should join the workshop stream :slightly_smiling_face: its like attending, without having to leave home
# May 26th 2017, 13:36 grymmjack @dakota thank you. i don't go to confs :(
# May 26th 2017, 13:33 styks1987 got it, thanks
# May 26th 2017, 13:32 hmic and you want that biggest big of every person of course. which is exactly what that does
# May 26th 2017, 13:32 hmic once you've grasped the idea, its easy to use the pattern
# May 26th 2017, 13:31 styks1987 yep
# May 26th 2017, 13:31 hmic s/as/has/
# May 26th 2017, 13:31 hmic so you are looking for the bid of that person that as no other bid (from that person) that is greater
# May 26th 2017, 13:30 styks1987 I just want the max by that person
# May 26th 2017, 13:30 styks1987 but 3 made by one person
# May 26th 2017, 13:30 styks1987 there may be 6 bids
# May 26th 2017, 13:30 styks1987 hmic: I assume this would work with other conditions on it like no other one greater (of a specific user id)
# May 26th 2017, 13:29 hmic left join, greater than condition, where is null. so you are looking for the one that has *no* other one greater than on the relation in the table
# May 26th 2017, 13:27 styks1987 hmic solid thanks