Database Access Levels: Administrator Approval

How can I make it possible for the user to edit and load data so that the administrator can either approve or refuse each edit?

Как сделать так, чтобы пользователь мог редактировать и загружать данные, чтобы администратор мог либо одобрить, либо отклонить каждое редактирование?

Does anyone know how to do this?

If you have a collection of editVersions, you can try add a isApproved field (Boolean) that can be set to true by admins.
On the page, filter the data to the last created version where isApproved is true - isNotEmpty(“isApproved”)
You can do via a dataset (on the editor or by code) or via a collection query.

@jonatandor35 It is hard to understand what I have to do.
Is there any article on this subject?

@qoobbell I don’t know if there’re articles about this specific scenario.
But all I suggested is have a collection of versions, with a field for admin approval, and on the front end to filter the dataset based on isApproved is TRUE. Also set the dataset to show only one version, and sort it by descending _lastCreated so it’ll show the latest approved version.