7e6f6e1603
Enables frozens string for the following: * lib/gitlab/conflict/**/*.rb * lib/gitlab/cross_project_access/**/*.rb * lib/gitlab/cycle_analytics/**/*.rb * lib/gitlab/data_builder/**/*.rb * lib/gitlab/database/**/*.rb * lib/gitlab/dependency_linker/**/*.rb * lib/gitlab/diff/**/*.rb * lib/gitlab/downtime_check/**/*.rb * lib/gitlab/email/**/*.rb * lib/gitlab/etag_caching/**/*.rb Partially addresses gitlab-org/gitlab-ce#47424.
18 lines
454 B
Ruby
18 lines
454 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module Database
|
|
# Module that can be injected into a ActiveRecord::Relation to make it
|
|
# read-only.
|
|
module ReadOnlyRelation
|
|
[:delete, :delete_all, :update, :update_all].each do |method|
|
|
define_method(method) do |*args|
|
|
raise(
|
|
ActiveRecord::ReadOnlyRecord,
|
|
"This relation is marked as read-only"
|
|
)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|