4 files changed +14
-3
lines changed Original file line number Diff line number Diff line change @@ -363,6 +363,9 @@ group :development, :test do
363
363
364
364
# i18n-tasks helps find and manage missing and unused translations.
365
365
gem "i18n-tasks" , "~> 1.0.13" , require : false
366
+
367
+ # Active Record Doctor helps to keep the database in good shape.
368
+ gem "active_record_doctor" , "~> 1.15.0"
366
369
end
367
370
368
371
gem "bootsnap" , "~> 1.18.0" , require : false
Original file line number Diff line number Diff line change 291
291
erubi (~> 1.11 )
292
292
rails-dom-testing (~> 2.2 )
293
293
rails-html-sanitizer (~> 1.6 )
294
+ active_record_doctor (1.15.0 )
295
+ activerecord (>= 4.2.0 )
294
296
activejob (7.1.5.1 )
295
297
activesupport (= 7.1.5.1 )
296
298
globalid (>= 0.3.6 )
@@ -1267,6 +1269,7 @@ PLATFORMS
1267
1269
1268
1270
DEPENDENCIES
1269
1271
actionpack-xml_parser (~> 2.0.0 )
1272
+ active_record_doctor (~> 1.15.0 )
1270
1273
activemodel-serializers-xml (~> 1.0.1 )
1271
1274
activerecord-import (~> 2.1.0 )
1272
1275
activerecord-nulldb-adapter (~> 1.1.0 )
@@ -1486,6 +1489,7 @@ CHECKSUMS
1486
1489
actionpack-xml_parser (2.0.1) sha256=40cb461ee99445314ab580a783fb7413580deb8b28113c9e70ecd7c1b334d5e6
1487
1490
actiontext (7.1.5.1) sha256=b8e261cfad5bc6a78b3f15be5e7c7f32190041b3dc6f027a3a353b4392d2f7ec
1488
1491
actionview (7.1.5.1) sha256=8c559a213501798e29b50b5341a643a70bbf6fa0aa2abaf571d0efc59dc4f6aa
1492
+ active_record_doctor (1.15.0) sha256=614a49e259a679d17cbc62dead9217acaf7191a371115606132473123b426b13
1489
1493
activejob (7.1.5.1) sha256=7633376c857f4c491d06b5a7f5d86d9f07afc595398354a3f1abe80eb7e35767
1490
1494
activemodel (7.1.5.1) sha256=74727466854a7fbdfe8f2702ca3112b23877500d4926bf7e02e921ad542191f1
1491
1495
activemodel-serializers-xml (1.0.3) sha256=fa1b16305e7254cc58a59c68833e3c0a593a59c8ab95d3be5aaea7cd9416c397
Original file line number Diff line number Diff line change @@ -68,14 +68,16 @@ class User < Principal
68
68
belongs_to :ldap_auth_source , optional : true
69
69
70
70
# Authorized OAuth grants
71
- has_many :oauth_grants ,
71
+ has_many :oauth_grants , # rubocop:disable Rails/InverseOf
72
72
class_name : "Doorkeeper::AccessGrant" ,
73
- foreign_key : "resource_owner_id"
73
+ foreign_key : "resource_owner_id" ,
74
+ dependent : :delete_all
74
75
75
76
# User-defined oauth applications
76
77
has_many :oauth_applications ,
77
78
class_name : "Doorkeeper::Application" ,
78
- as : :owner
79
+ as : :owner ,
80
+ dependent : :destroy
79
81
80
82
# Meeting memberships
81
83
has_many :meeting_participants ,
Original file line number Diff line number Diff line change 50
50
describe "Associations" do
51
51
it { is_expected . to have_many ( :emoji_reactions ) . dependent ( :destroy ) }
52
52
it { is_expected . to have_many ( :reminders ) . with_foreign_key ( :creator_id ) . dependent ( :destroy ) . inverse_of ( :creator ) }
53
+ it { is_expected . to have_many ( :oauth_grants ) . with_foreign_key ( :resource_owner_id ) . dependent ( :delete_all ) }
54
+ it { is_expected . to have_many ( :oauth_applications ) . dependent ( :destroy ) }
53
55
end
54
56
55
57
describe "with long but allowed attributes" do
0 commit comments