mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
FEATURE: allow external links in custom sidebar sections (#20503)
Originally, only Discourse site links were available. After feedback, it was decided to extend this feature to external URLs. /t/93491
This commit is contained in:
committed by
GitHub
parent
b4528b9e27
commit
a16ea24461
@@ -0,0 +1,7 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
class AddExternalToSidebarUrls < ActiveRecord::Migration[7.0]
|
||||
def change
|
||||
add_column :sidebar_urls, :external, :boolean, default: false, null: false
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user