diff options
author | Claire <claire.github-309c@sitedethib.com> | 2021-05-08 00:01:47 +0200 |
---|---|---|
committer | Claire <claire.github-309c@sitedethib.com> | 2021-05-08 00:01:47 +0200 |
commit | fbf097f7e159e4fabe39bd36b9bc480b3f8b4058 (patch) | |
tree | 7b49b6927f676723bf0f34e7e9c2e561553ec167 /app | |
parent | d30dd5b1dbbc8e72cd7aefe5ee39684e068b7118 (diff) | |
parent | 81b19e28ff26cbee22f4c6c393391e92d78c61ef (diff) |
Merge branch 'main' into glitch-soc/merge-upstream
Diffstat (limited to 'app')
-rw-r--r-- | app/models/account.rb | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/app/models/account.rb b/app/models/account.rb index 915c9cd4b..53c6a43a6 100644 --- a/app/models/account.rb +++ b/app/models/account.rb @@ -6,12 +6,8 @@ # id :bigint(8) not null, primary key # username :string default(""), not null # domain :string -# secret :string default(""), not null # private_key :text # public_key :text default(""), not null -# remote_url :string default(""), not null -# salmon_url :string default(""), not null -# hub_url :string default(""), not null # created_at :datetime not null # updated_at :datetime not null # note :text default(""), not null @@ -49,12 +45,18 @@ # avatar_storage_schema_version :integer # header_storage_schema_version :integer # devices_url :string -# sensitized_at :datetime # suspension_origin :integer +# sensitized_at :datetime # class Account < ApplicationRecord - self.ignored_columns = %w(subscription_expires_at) + self.ignored_columns = %w( + subscription_expires_at + secret + remote_url + salmon_url + hub_url + ) USERNAME_RE = /[a-z0-9_]+([a-z0-9_\.-]+[a-z0-9_]+)?/i MENTION_RE = /(?<=^|[^\/[:word:]])@((#{USERNAME_RE})(?:@[[:word:]\.\-]+[a-z0-9]+)?)/i |