Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/GeoIp2/vue/src/Geoip2Updater/Geoip2Updater.adapter.ts')
-rw-r--r--plugins/GeoIp2/vue/src/Geoip2Updater/Geoip2Updater.adapter.ts59
1 files changed, 0 insertions, 59 deletions
diff --git a/plugins/GeoIp2/vue/src/Geoip2Updater/Geoip2Updater.adapter.ts b/plugins/GeoIp2/vue/src/Geoip2Updater/Geoip2Updater.adapter.ts
deleted file mode 100644
index 4ab8d05aa8..0000000000
--- a/plugins/GeoIp2/vue/src/Geoip2Updater/Geoip2Updater.adapter.ts
+++ /dev/null
@@ -1,59 +0,0 @@
-/*!
- * Matomo - free/libre analytics platform
- *
- * @link https://matomo.org
- * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
- */
-
-import { createAngularJsAdapter } from 'CoreHome';
-import Geoip2Updater from './Geoip2Updater.vue';
-
-export default createAngularJsAdapter({
- component: Geoip2Updater,
- scope: {
- geoIpDatabasesInstalled: {
- angularJsBind: '<',
- },
- showGeoIpUpdateSection: {
- angularJsBind: '<',
- },
- dbipLiteUrl: {
- angularJsBind: '<',
- },
- dbipLiteFilename: {
- angularJsBind: '<',
- },
- geoipLocUrl: {
- angularJsBind: '<',
- },
- isProviderPluginActive: {
- angularJsBind: '<',
- },
- geoipIspUrl: {
- angularJsBind: '<',
- },
- lastTimeUpdaterRun: {
- angularJsBind: '<',
- },
- geoipUpdatePeriod: {
- angularJsBind: '<',
- },
- updatePeriodOptions: {
- angularJsBind: '<',
- },
- geoipDatabaseStartedInstalled: {
- angularJsBind: '<',
- },
- showGeoipUpdateSection: {
- angularJsBind: '<',
- },
- nextRunTime: {
- angularJsBind: '<',
- },
- nextRunTimePretty: {
- angularJsBind: '<',
- },
- },
- directiveName: 'piwikGeoip2Updater',
- transclude: true,
-});