mirror of
https://github.com/zulip/zulip.git
synced 2025-11-02 13:03:29 +00:00
emoji: Remove setting for deprecated Google blobs emoji set.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
committed by
Tim Abbott
parent
bbca79d92e
commit
b742ab18f9
@@ -154,14 +154,12 @@ class UserBaseSettings(models.Model):
|
||||
|
||||
# Emoji sets
|
||||
GOOGLE_EMOJISET = "google"
|
||||
GOOGLE_BLOB_EMOJISET = "google-blob"
|
||||
TEXT_EMOJISET = "text"
|
||||
TWITTER_EMOJISET = "twitter"
|
||||
EMOJISET_CHOICES = (
|
||||
(GOOGLE_EMOJISET, "Google"),
|
||||
(TWITTER_EMOJISET, "Twitter"),
|
||||
(TEXT_EMOJISET, "Plain text"),
|
||||
(GOOGLE_BLOB_EMOJISET, "Google blobs"),
|
||||
)
|
||||
emojiset = models.CharField(default=GOOGLE_EMOJISET, choices=EMOJISET_CHOICES, max_length=20)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user