mirror of
https://github.com/discourse/discourse.git
synced 2025-02-16 18:24:52 -06:00
Remove unused site setting. (#6398)
This commit is contained in:
parent
c3f6b4d966
commit
aca195e4a7
@ -1728,7 +1728,6 @@ en:
|
||||
enable_emoji: "Enable emoji"
|
||||
enable_emoji_shortcuts: "Common smiley text such as :) :p :( will be converted to emojis"
|
||||
emoji_set: "How would you like your emoji?"
|
||||
enforce_square_emoji: "Force a square aspect ratio to all emojis."
|
||||
emoji_autocomplete_min_chars: "Minimum number of characters required to trigger autocomplete emoji popup"
|
||||
|
||||
approve_post_count: "The amount of posts from a new or basic user that must be approved"
|
||||
|
@ -677,8 +677,6 @@ posting:
|
||||
default: 'twitter'
|
||||
client: true
|
||||
enum: 'EmojiSetSiteSetting'
|
||||
enforce_square_emoji:
|
||||
default: true
|
||||
emoji_autocomplete_min_chars:
|
||||
client: true
|
||||
default: 0
|
||||
|
5
db/migrate/20180913200027_remove_enforce_square_emoji.rb
Normal file
5
db/migrate/20180913200027_remove_enforce_square_emoji.rb
Normal file
@ -0,0 +1,5 @@
|
||||
class RemoveEnforceSquareEmoji < ActiveRecord::Migration[5.2]
|
||||
def change
|
||||
execute "DELETE FROM site_settings WHERE name = 'enforce_square_emoji'"
|
||||
end
|
||||
end
|
Loading…
Reference in New Issue
Block a user