Al
Al
> How are you marshalling data into your entity? Normal `find()`, nothing special > Is slug part of the data that is being set into the entity? No, it isn't
Related: #690
Yep, it's here in `beforePaginate()` callback: https://github.com/FriendsOfCake/crud-view/blob/212573ae0bd318c8bf7ee1126e93f68bb6ae7f72/src/Listener/ViewListener.php#L67 Changing that to `$this->associations = $this->_associations($related);` hotfixes the issue for me, meaning associated entries are now linked to using their displayFields. As I...
Only `/bootstrap_u_i/js/popper.js` didn't get picked up automatically because it never gets compiled like I assume it would under `npm`.
Sure, I never meant to suggest to actually automatically install Bootstrap. Seems I wasn't clear enough, sorry about that. What I was suggesting it to tell people how to quickly...
While I am not good enough with phrasing things when writing the docs to suggest a PR, I did paste the commands that worked for me above.
At the same time, `username` is required: https://github.com/CakeDC/users/blob/9f9f49bb8a0f0302ddfab46195367b1f73d698da/src/Model/Table/UsersTable.php#L145 … which clearly some people don't want and [this plugin actually allows using email instead](https://github.com/CakeDC/users/blob/9f9f49bb8a0f0302ddfab46195367b1f73d698da/Docs/Documentation/Configuration.md#using-the-users-email-to-login). I have all of that configured and...
Right, I just believed I am not asking for anything niche enough to warrant a custom table. After all, I am wanting to use email instead of username, which is...
@steinkel okay, after sleeping on it, I have to agree extending `\CakeDC\Users\Model\Table\UsersTable` with a custom class makes more sense for now given the circumstances, at least until this is implemented...