mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-22 04:26:51 +08:00
This change encourages users to title their threads to make it easier for other users to join in on conversations that matter to them. The creator of the chat thread will receive a toast notification prompting them to add a thread title when on mobile and the thread has at least 5 sent replies.
14 lines
375 B
Ruby
Vendored
14 lines
375 B
Ruby
Vendored
# frozen_string_literal: true
|
|
|
|
RSpec.describe UserOption do
|
|
describe "#chat_separate_sidebar_mode" do
|
|
it "is present" do
|
|
expect(described_class.new.chat_separate_sidebar_mode).to eq("default")
|
|
end
|
|
end
|
|
describe "#show_thread_title_prompts" do
|
|
it "is present" do
|
|
expect(described_class.new.show_thread_title_prompts).to eq(true)
|
|
end
|
|
end
|
|
end
|