Skip to content
Snippets Groups Projects

Refactor trackers

Merged Marko Ivancic requested to merge refactor-trackers into main
2 files
+ 37
17
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -72,9 +72,13 @@ $config = [
@@ -72,9 +72,13 @@ $config = [
ModuleConfiguration::OPTION_PROVIDER_FOR_CONNECTED_SERVICES =>
ModuleConfiguration::OPTION_PROVIDER_FOR_CONNECTED_SERVICES =>
/**
/**
* Default connected services provider which expects Doctrine DBAL compatible connection to be set below.
* Default connected services provider which expects Doctrine DBAL compatible connection to be set below.
 
* CurrentDataProvider only gathers current (latest information) about the service and user (there is no
 
* versioning, so it's faster). VersionedDataProvider keeps track of any changes in data about the service
 
* and user.
 
*
*/
*/
//Providers\ConnectedServices\DoctrineDbal\VersionedDataProvider\VersionedDataProvider::class,
Providers\ConnectedServices\DoctrineDbal\CurrentDataProvider::class,
Providers\ConnectedServices\DoctrineDbal\CurrentDataProvider::class,
 
//Providers\ConnectedServices\DoctrineDbal\VersionedDataProvider::class,
/**
/**
* Activity provider is a class which will be used to provide list of authentication events which includes info
* Activity provider is a class which will be used to provide list of authentication events which includes info
@@ -87,6 +91,7 @@ $config = [
@@ -87,6 +91,7 @@ $config = [
ModuleConfiguration::OPTION_PROVIDER_FOR_ACTIVITY =>
ModuleConfiguration::OPTION_PROVIDER_FOR_ACTIVITY =>
/**
/**
* Default activity provider which expects Doctrine DBAL compatible connection to be set below.
* Default activity provider which expects Doctrine DBAL compatible connection to be set below.
 
* Currently only VersionedDataProvider is available, which tracks all changes in services and users.
*/
*/
Providers\Activity\DoctrineDbal\VersionedDataProvider::class,
Providers\Activity\DoctrineDbal\VersionedDataProvider::class,
Loading