Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions components/ILIAS/History/PRIVACY.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# History Privacy

> **Disclaimer: This documentation does not guarantee completeness or accuracy. Please report any missing or incorrect information by submitting a [Pull Request](https://github.com/ILIAS-eLearning/ILIAS/blob/trunk/docs/development/contributing.md#pull-request-to-the-repositories) or, if you prefer, via the [ILIAS bug tracker](https://mantis.ilias.de). When using the bug tracker, please select the corresponding component in the **Category** field.**


## General Information

The History component previously maintained an audit trail of changes to ILIAS objects, recording the acting user, the affected object, the action type, and a timestamp. As of database update step 11 (`HistoryDatabaseUpdateSteps11::step_1`), the component is decommissioned: both the `history` and the `history_seq` database tables are dropped unconditionally during the ILIAS update process. No active PHP classes exist in this component that write to any database table. The component no longer stores, presents, or exports personal data.

## Integrated Components

The History component does not currently integrate with any other ILIAS components that handle personal data.

## Data being stored

The History component does not store any personal data. The underlying database tables (`history`, `history_seq`) are removed during the ILIAS update via `HistoryDatabaseUpdateSteps11::step_1`.

## Data being presented

The History component does not present any personal data.

## Data being deleted

The `history` and `history_seq` tables are permanently dropped by `HistoryDatabaseUpdateSteps11::step_1` when the ILIAS instance is updated to database step 11 or later. No further deletion mechanism is applicable.

## Data being exported

The History component does not export any personal data.
Loading