feat: Add support for account abuse detection (#11001)

This PR adds service to automate account abuse detection. Currently
based on the signup name and URL, could potentially add more context
such as usage analysis, message metadata etc.
This commit is contained in:
Pranav
2025-02-28 15:28:19 -08:00
committed by GitHub
parent 616bbced9c
commit ecfa6bf6a2
25 changed files with 744 additions and 22 deletions

View File

@@ -0,0 +1,5 @@
class AddInternalAttributesToAccounts < ActiveRecord::Migration[7.0]
def change
add_column :accounts, :internal_attributes, :jsonb, null: false, default: {}
end
end