fix: prevent error 500 on creation of new backoffice user
This commit is contained in:
@@ -1,23 +1,35 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
return [
|
return [
|
||||||
// --- The default avatar size
|
// Default configuration group for Gravatar
|
||||||
'size' => 80,
|
'default' => [
|
||||||
|
// --- The default avatar size
|
||||||
|
'size' => 80,
|
||||||
|
|
||||||
// --- The default avatar to display if we have no results
|
// --- The default avatar to display if we have no results
|
||||||
// (bool) false
|
// (bool) false
|
||||||
// (string) 404
|
// (string) 404
|
||||||
// (string) mm: (mystery-man) a simple, cartoon-style silhouetted outline of a person (does not vary by email hash).
|
// (string) mm: (mystery-man) a simple, cartoon-style silhouetted outline of a person (does not vary by email hash).
|
||||||
// (string) identicon: a geometric pattern based on an email hash.
|
// (string) identicon: a geometric pattern based on an email hash.
|
||||||
// (string) monsterid: a generated 'monster' with different colors, faces, etc.
|
// (string) monsterid: a generated 'monster' with different colors, faces, etc.
|
||||||
// (string) wavatar: generated faces with differing features and backgrounds.
|
// (string) wavatar: generated faces with differing features and backgrounds.
|
||||||
// (string) retro: awesome generated, 8-bit arcade-style pixelated faces.
|
// (string) retro: awesome generated, 8-bit arcade-style pixelated faces.
|
||||||
'default' => 'identicon',
|
'fallback' => 'identicon',
|
||||||
|
|
||||||
// --- Set the type of avatars we allow to show
|
// --- Whether to use HTTPS protocol
|
||||||
// - g: suitable for display on all websites with any audience type.
|
'secure' => false,
|
||||||
// - pg: may contain rude gestures, provocatively dressed individuals, the lesser swear words, or mild violence.
|
|
||||||
// - r: may contain such things as harsh profanity, intense violence, nudity, or hard drug use.
|
// --- Set the type of avatars we allow to show
|
||||||
// - x: may contain hardcore sexual imagery or extremely disturbing violence.
|
// - g: suitable for display on all websites with any audience type.
|
||||||
'maxRating' => 'g',
|
// - pg: may contain rude gestures, provocatively dressed individuals, the lesser swear words, or mild violence.
|
||||||
|
// - r: may contain such things as harsh profanity, intense violence, nudity, or hard drug use.
|
||||||
|
// - x: may contain hardcore sexual imagery or extremely disturbing violence.
|
||||||
|
'maximumRating' => 'g',
|
||||||
|
|
||||||
|
// --- Force default image to always display
|
||||||
|
'forceDefault' => false,
|
||||||
|
|
||||||
|
// --- Optional file extension appended to URL
|
||||||
|
'forceExtension' => 'jpg',
|
||||||
|
]
|
||||||
];
|
];
|
||||||
|
|||||||
Reference in New Issue
Block a user