Aaron Carlino
Aaron Carlino
Reference: https://github.com/unclecheese/silverstripe-dropzone/blob/master/javascript/dropzone.js#L312
I assume you would include `Calendar` in that group, as well? Yeah, makes sense to me. It certainly aligns with the goals and principles we've laid out in SS4 for...
Yes! I have a rough spec for supporting modeladmin. It will work like this: ``` Components: Person: Fields: Name: {CMSField: Text} City: {CMSField: Text} Interface: Type: modeladmin Icon: /path/to/icon.png Title:...
It's just an idea. It's not implemented yet. That's why I said "this is how it WILL work." ;-)
I think the only reason is because Github doesn't offer a template for the BSD license. I always just click on whatever the first option is. I don't really know...
Usually the way you do this is by wrapping the file in a DataObject. ```php class MyFileDataObject extends DataObject { private static $db = ['Caption' => 'Varchar']; private static $has_one...
This is just going to add a bit of boilerplate to the JWT installation. You'll need to create a new `QueryHandler` implementation with whatever middlewares you want, and omit the...
Thanks, guys. @shoaibali The Config API offers Before and After settings that allow you to specify with some precision when the file should load and what it should override. You...
Would you be able to rebase this against the master so we can merge it in?
I think it's because the list is immutable. Should be `$events = $events->sort(...);`