Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Гем для сериализации аудит-логов на базе Audited.
Добавить в Gemfile
gem 'audited-serialize'
И выполнить:
bundle
Для вызова сериализованного списка изменений вызовите метод .changes_list
на экземпляре audit-класса (по умолчанию - Audited::Audit
)
audit = Audited::Audit.first
audit.changes_list
=>
[
{ field: "ФИО", from: nil, to: "Test" },
{ field: "Роль", from: nil, to: "Пользователь" },
{ field: "Email", from: nil, to: "user@example.com" },
{ field: "Пароль", from: nil, to: "<новый>" }
]
На экземплярах audit-класса доступен метод .title
для вывода заголовка c информацией о том, какое действие на какой сущности было совершено
audit = Audited::Audit.first
audit.title
=> "Изменение пользователя"
Названия сущностей (пользователя
из примера выше) должны быть описаны в YAML-файле с переводами. Для генерации файла со списком текущих моделей, на которых предусмотрен audit-трекинг воспользуйтесь командой:
rails g audited:translations
Для поиска моделей с недостающими переводами и более неактуальных переводов выполните:
rake audited:sync_translations
При наличии в аудит-логах полей, содержащих ID связанных сущностей, по умолчанию будет отображено название (поле name
) этой сущности. При отсутствии у сущности поля name
или необходимости отображения значения другого поля можно задать название этого поля в модели
# app/models/user.rb
class User < ApplicationRecord
audit title: :email
end
Изменение настроек сериализации осуществляется путем редактирования стандартного файла конфигурации Audited
# config/initializers/audited.rb
Audited.config do |config|
end
Для добавления исключений для полей сущностей, которые не будут отображаться в списке добавьте в конфиг serialization_exceptions
.
# config/initializers/audited.rb
Audited.config do |config|
config.serialization_exceptions = {
'User' => ['role']
}
end
FAQs
Unknown package
We found that audited-serialize demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.