* Update Readme to remove old badges
Removed the old Travis badge and swapped the Slack one for the Discord one
* Copy in main README per Victor
Signed-off-by: Derrick Mehaffy <derrickmehaffy@gmail.com>
* Add CLI support for branch in direct GitHub URL
* Change getRepoInfo to return branch
* Change variable name, add eslint 'one-var' rule
* Fix eslint 'one-var' error
* Move fetch GitHub logic in its own file
* Update code to avoid destructuring reassignment
* Update and add some JSDoc
* Add CAS as authentication provider
* reorder provider cas after auth0 at end
* use strapi.log instead of console.log
Co-authored-by: Jean-Sébastien Herbaux <jean-sebastien.herbaux@epitech.eu>
If the input file has EXIF, XMP, IPTC metadata (i.e user disabled "optimize size without quality loss" a.k.a "strip metadata" option in Admin UI), the resized images generated should keep metadata too.
If the user doesn't want to keep metadata, they would let the default option "Optimize size without quality loss" enabled, right? So the resized images wouldn't keep the metadata anyway.
* Fix date field being parsed with a timezone
Signed-off-by: Derrick Mehaffy <derrickmehaffy@gmail.com>
* send YYYY-MM-DD format instead or 2021-04-27T15:01:09.155Z
* Revert "Fix date field being parsed with a timezone"
This reverts commit 498180477bf1750aa177a27786cc9b4e873c4e95.
Co-authored-by: Pierre Noël <petersg83@gmail.com>
* Added norwegian translation.
* Update the index.js file so the Norwegian translation is available in the dropdown
* Update the index.js file so the Norwegian translation is available in the dropdown
Co-authored-by: Kenneth Solberg <kenneth@codewise.no>
* Fixes#9804
* Fixes isPrivateAttribute function in strapi utils to take into account the private property within an attribute
* removing comment
* removing isNotPrivate function + adding call to already existing isPrivateAttribute function instead of isNotPrivate
* isPrivateAttribute fixed based on coments from Alexandre and confirmed that the model does indeed contain all private fields in an array at startup time
* removing isNotPrivate function and fixing generateEnumDefinitions to use the already available isPrivateAttribute function
* checking if created_at and update_at are also marked as private and if this is the case then hiding them
* allowIds by default when generating the input model to see if the tests will pass
* moving allowIds back to false by default
* adding isTypeAttributeEnabled function to check if a type attribute has been disabled and remove it from the exported graphql schema
* removing unused var
* only using isTypeAttributeEnabled instead of isPrivateAttribute.
* adding isPrivateAttribute at association level
* Adding isNotPrivate back together with isTypeAttributeEnabled
* adding unit test for removing a disabled attribute from a graphql schema
* renaming person to player in the test model
* Deleting the file as it has been renamed in the strapi master branch
* fixing lint issues
* fixing some lint issues
* adding isTypeAttributeEnabled support
* adding enumeration field in graphql
* adding use strict; to test file
* fixing test checking that disabled attributes in graphql are removed from the graphql schema
* adding test for buidShadowCrud
* Update packages/strapi-plugin-graphql/services/type-builder.js
Co-authored-by: Jean-Sébastien Herbaux <jean-sebastien.herbaux@epitech.eu>
Co-authored-by: Rmaroun <rmaroun@outlook.com>
Co-authored-by: Jean-Sébastien Herbaux <jean-sebastien.herbaux@epitech.eu>
On Windows, an empty return from the createQuickStartProject function caused the process termination to hang.
Added explicit process termination for this platform