mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-26 06:38:28 +08:00
Redesigned page to update site logos. `AdminBrandingLogoFormComponent` is attached to the old logos page and the new branding page. In the next steps, branding will replace the logos page. A new `AdminConfigAreaCardSection` component was added hidden and less frequently used settings. An image placeholder was also needed because many additional logos have a fallback to the site logo. Finally, `twitter_summary_large_image` was renamed to `x_summary_large_image`. Desktop  Mobile 
15 lines
310 B
Ruby
Vendored
15 lines
310 B
Ruby
Vendored
# frozen_string_literal: true
|
|
|
|
module PageObjects
|
|
module Pages
|
|
class AdminBranding < PageObjects::Pages::Base
|
|
def visit
|
|
page.visit("/admin/config/branding")
|
|
end
|
|
|
|
def logo_form
|
|
@logo_form ||= PageObjects::Components::AdminBrandingLogoForm.new
|
|
end
|
|
end
|
|
end
|
|
end
|