Skip to content

Commit

Permalink
OXDEV-805 Add missing class AdminLogDataCollector
Browse files Browse the repository at this point in the history
  • Loading branch information
RahatHameed committed Sep 20, 2024
1 parent b028004 commit e1737da
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions src/UserData/Application/AdminLogDataCollector.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<?php

/**
* Copyright © OXID eSales AG. All rights reserved.
* See LICENSE file for license details.
*/

declare(strict_types=1);

namespace OxidEsales\GdprOptinModule\UserData\Application;

class AdminLogDataCollector extends AbstractTableDataCollector
{
public function getTableName(): string
{
return 'oxadminlog';
}

protected function getColumnName(): string
{
return 'OXUSERID';
}
}

0 comments on commit e1737da

Please sign in to comment.