mirror of
https://github.com/getgrav/grav.git
synced 2025-02-20 19:56:53 +01:00
Regression: Fixed flex user index with folder storage
This commit is contained in:
parent
40010f7ff7
commit
0bbbe96ae0
|
|
@ -9,6 +9,7 @@
|
|||
* Regression: Fixed fatal error in blueprints [#2811](https://github.com/getgrav/grav/issues/2811)
|
||||
* Regression: Fixed bad method call in FlexDirectory::getAuthorizeRule()
|
||||
* Regression: Fixed fatal error in admin if the site has custom permissions in `onAdminRegisterPermissions`
|
||||
* Regression: Fixed flex user index with folder storage
|
||||
* Grav 1.7: Fixed saving Flex configuration with ignored values becoming null
|
||||
|
||||
# v1.7.0-rc.5
|
||||
|
|
|
|||
|
|
@ -107,7 +107,6 @@ config:
|
|||
class: 'Grav\Framework\File\Formatter\YamlFormatter'
|
||||
folder: 'account://'
|
||||
pattern: '{FOLDER}/{KEY}{EXT}'
|
||||
key: username
|
||||
indexed: true
|
||||
search:
|
||||
options:
|
||||
|
|
|
|||
|
|
@ -83,7 +83,7 @@ class FlexServiceProvider implements ServiceProviderInterface
|
|||
'options' => [
|
||||
'file' => 'user',
|
||||
'pattern' => '{FOLDER}/{KEY:2}/{KEY}/{FILE}{EXT}',
|
||||
'key' => 'storage_key',
|
||||
'key' => 'username',
|
||||
],
|
||||
];
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user