Log message #4192949

# At Username Text
# Jul 12th 2019, 11:20 noel @igreat umm.. not sure what to do with the snippet you've shown.
# Jul 12th 2019, 11:17 igreat @noel Ok, I need to do it with 3.7
# Jul 12th 2019, 11:15 slackebot <igreat>
# Jul 12th 2019, 11:13 noel @igreat although that was back in 2.x, so maybe it has changed. There was `./Console/cake AclExtras.AclExtras aco_sync`
# Jul 12th 2019, 11:11 noel @igreat I've done ACL before (quite a while ago). There's some CLI stuff to help you manage it iirc
# Jul 12th 2019, 11:10 noel @igreat disabling CSRF as per those links doesn't seem to help. I assume that snippet is for the controller? (You said routes).
# Jul 12th 2019, 11:10 igreat Guys I want to create an ACL in project using the Authorization and Authentication plugins, any headway on how to go about it?
# Jul 12th 2019, 11:06 neon1024 As you know the expected outcome
# Jul 12th 2019, 11:06 neon1024 I would probably start with TDD
# Jul 12th 2019, 11:05 half2me anyway, maybe I’ll just try to write some simple logic
# Jul 12th 2019, 11:05 half2me but I would need it to just cover basic hasOne and hasMany cases
# Jul 12th 2019, 11:05 half2me I know with complex scenarios it can get out of hand
# Jul 12th 2019, 11:05 half2me and it would take care of updating them
# Jul 12th 2019, 11:05 neon1024 I didn’t bother in the end, it was too complicated
# Jul 12th 2019, 11:04 half2me yeah, I was thinking of just a simple merger, where you could tell it what associations to look at
# Jul 12th 2019, 11:04 neon1024 With nested recursive functions and all sorts
# Jul 12th 2019, 11:04 half2me lol
# Jul 12th 2019, 11:04 neon1024 Last time I tried to write an entity merger it got well out of hand
# Jul 12th 2019, 11:04 neon1024 Ah well, that’s how I’d do it anyway
# Jul 12th 2019, 11:04 neon1024 You could duplicate the existing one, which will perserve the keys, change the author id and you’re done
# Jul 12th 2019, 11:04 half2me I want to merge 1 entity into another
# Jul 12th 2019, 11:03 half2me but I don’t want to create anything new
# Jul 12th 2019, 11:03 half2me for duplicating entities
# Jul 12th 2019, 11:03 neon1024 You’re creating something new
# Jul 12th 2019, 11:03 neon1024 No, I don’t think so
# Jul 12th 2019, 11:03 half2me I’ve used this behavior before
# Jul 12th 2019, 11:03 half2me @neon1024 isn’t this the exact opposite? :)
# Jul 12th 2019, 11:03 neon1024 As the set option allows you to change the resulting entity
# Jul 12th 2019, 11:03 half2me so merging Author 2 into Author 1 needs to update everyone’s `author_id` associated to Author 2.
# Jul 12th 2019, 11:03 neon1024 https://github.com/riesenia/cakephp-duplicatable
# Jul 12th 2019, 11:03 neon1024 Did you look at duplicatable?
# Jul 12th 2019, 11:02 half2me and basically I would need a plugin which takes care of reassigning foreign keys of all their associations
# Jul 12th 2019, 11:02 half2me I need to merge two similar entities
# Jul 12th 2019, 11:01 half2me hey guys I’m wondering if you know of a plugin which can help me do this, or should I make my own solution
# Jul 12th 2019, 10:57 neon1024 @noel Ahh okay!
# Jul 12th 2019, 10:55 igreat @peppejaripappalardo Ok, why do want the `$organisations->actors['description']` ?
# Jul 12th 2019, 10:51 igreat You have to disable the CSRF middleware for your API routes
# Jul 12th 2019, 10:51 peppejaripappalardo thx for the reply @igreat and @challgren, i need to use the list because i using this query into a select box
# Jul 12th 2019, 10:49 noel I'm trying to test my CakePHP REST API using Postman but I'm getting CSRF token missing errors. How can I get that working?
# Jul 12th 2019, 10:48 noel Neon1024.. it's the sound Tintin makes when he punches people :slightly_smiling_face: (Proof Of Concept actually)
# Jul 12th 2019, 10:46 igreat Hi @peppejaripappalardo first you are fetching list, use `find()` and the query will return the Actor Entity, hence you should get the description with `$organisations->description`