about summary refs log tree commit diff
path: root/app/models/admin/action_log.rb
diff options
context:
space:
mode:
authorDavid Yip <yipdw@member.fsf.org>2018-01-19 15:22:10 -0600
committerDavid Yip <yipdw@member.fsf.org>2018-01-19 15:22:10 -0600
commit2ca965c704075467226dbf798e13ac8e0e62cc15 (patch)
treec437e1f4993a6337759eb09157c78cd8134fd774 /app/models/admin/action_log.rb
parent2b2de41bc7ecec15aa73650da153e50f0e16f16b (diff)
parent0b888acfd4ffddd29f25c878373e9b9f5ec6c0ab (diff)
Merge remote-tracking branch 'origin/master' into merge-upstream
 Conflicts:
	app/javascript/styles/mastodon/components.scss
	app/javascript/styles/mastodon/modal.scss
Diffstat (limited to 'app/models/admin/action_log.rb')
-rw-r--r--app/models/admin/action_log.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/models/admin/action_log.rb b/app/models/admin/action_log.rb
index 4e950fbf7..c437c8ee8 100644
--- a/app/models/admin/action_log.rb
+++ b/app/models/admin/action_log.rb
@@ -16,8 +16,8 @@
 class Admin::ActionLog < ApplicationRecord
   serialize :recorded_changes
 
-  belongs_to :account, required: true
-  belongs_to :target, required: true, polymorphic: true
+  belongs_to :account
+  belongs_to :target, polymorphic: true
 
   default_scope -> { order('id desc') }