mirror of
https://github.com/discourse/discourse.git
synced 2025-05-22 16:21:18 +08:00
DEV: /channel
-> /c
chat route rename (#19782)
* DEV: Rnemae channel path to just c Also swap the channel id and channel slug params to be consistent with core. * linting * channel_path * params in wrong order * Drop slugify helper and channel route without slug * Request slug and route models through the channel model if possible * Add client side redirection for backwards-compatibility Co-authored-by: Joffrey JAFFEUX <j.jaffeux@gmail.com>
This commit is contained in:
@ -103,7 +103,7 @@ RSpec.describe "Create channel", type: :system, js: true do
|
||||
expect(page).to have_content(name)
|
||||
created_channel = ChatChannel.find_by(chatable_id: category_1.id)
|
||||
expect(created_channel.slug).to eq("cats-dogs")
|
||||
expect(page).to have_current_path(chat.channel_path(created_channel.id, created_channel.slug))
|
||||
expect(page).to have_current_path(chat.channel_path(created_channel.slug, created_channel.id))
|
||||
end
|
||||
|
||||
it "allows the user to set a slug independently of name" do
|
||||
@ -119,7 +119,7 @@ RSpec.describe "Create channel", type: :system, js: true do
|
||||
expect(page).to have_content(name)
|
||||
created_channel = ChatChannel.find_by(chatable_id: category_1.id)
|
||||
expect(created_channel.slug).to eq("pets-everywhere")
|
||||
expect(page).to have_current_path(chat.channel_path(created_channel.id, created_channel.slug))
|
||||
expect(page).to have_current_path(chat.channel_path(created_channel.slug, created_channel.id))
|
||||
end
|
||||
|
||||
context "when saving" do
|
||||
@ -165,7 +165,7 @@ RSpec.describe "Create channel", type: :system, js: true do
|
||||
expect(page).to have_content(category_1.name)
|
||||
created_channel = ChatChannel.find_by(chatable_id: category_1.id)
|
||||
expect(page).to have_current_path(
|
||||
chat.channel_path(created_channel.id, created_channel.slug),
|
||||
chat.channel_path(created_channel.slug, created_channel.id),
|
||||
)
|
||||
end
|
||||
end
|
||||
|
Reference in New Issue
Block a user