about summary refs log tree commit diff
path: root/app/models/status_edit.rb
diff options
context:
space:
mode:
authorClaire <claire.github-309c@sitedethib.com>2022-02-09 17:28:33 +0100
committerClaire <claire.github-309c@sitedethib.com>2022-02-09 17:28:33 +0100
commit322e907e0417da482789e4d24263f247f29a5769 (patch)
tree8356833bbbf82de571feb1d739e0db7e2a50c9be /app/models/status_edit.rb
parent8987ea4d6b236657b8ea97d619902668768ae8ff (diff)
parent3aebe711fd54d75c1ea35e65a5dc342e78508d15 (diff)
Merge branch 'main' into glitch-soc/merge-upstream
Conflicts:
- `app/views/settings/preferences/appearance/show.html.haml`:
  Upstream renamed some helper functions that were used in a part of the
  settings page which glitch-soc slightly changed the layout of.
  Ported the change.
Diffstat (limited to 'app/models/status_edit.rb')
-rw-r--r--app/models/status_edit.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/app/models/status_edit.rb b/app/models/status_edit.rb
index a89df86c5..6e88864e8 100644
--- a/app/models/status_edit.rb
+++ b/app/models/status_edit.rb
@@ -20,4 +20,9 @@ class StatusEdit < ApplicationRecord
   default_scope { order(id: :asc) }
 
   delegate :local?, to: :status
+
+  def emojis
+    return @emojis if defined?(@emojis)
+    @emojis = CustomEmoji.from_text([spoiler_text, text].join(' '), status.account.domain)
+  end
 end