Skip to content

Commit

Permalink
Make changes to public history
Browse files Browse the repository at this point in the history
  • Loading branch information
Arpita-Jaiswal authored and amitu committed Sep 19, 2024
1 parent 76f33c2 commit 7e0a35f
Showing 1 changed file with 46 additions and 35 deletions.
81 changes: 46 additions & 35 deletions pages/sites/setting/index.ftd
Original file line number Diff line number Diff line change
Expand Up @@ -123,75 +123,86 @@ dashboard-url: $page.dashboard-url
radius: curved
$on-click$: $page.setting-actions.update-help-requested(site_slug=$page.site.site-slug, help_requested=true)

;; ------------------------------- public-history -----------------------------------------------
-- ds.heading-medium: Site: Public History Enabled
if: { page.site.public-history }
;; ------------------------------- public-source -----------------------------------------------
-- ds.heading-medium: Source Is Visible To The World
if: { page.site.public-source }

-- ds.copy-regular:
if: { page.site.public-history }
if: { page.site.public-source }

By default sites on FifthTry disables **public history** but you, or someone in your team, enabled public-history
on this site. This means that you have given permission to everyone to view the history of this site.
By default sites on FifthTry disables **public source** but you, or someone in your team, enabled public-source
on this site. This means that you have given permission to everyone to view the source of this site but they
cannot edit the content of the site.

-- ds.danger-button: Disable Public History
if: { page.site.public-history }
-- ds.danger-button: Make Source Private
if: { page.site.public-source }
width: wide
radius: curved
$on-click$: $page.setting-actions.update-public-history(site_slug=$page.site.site-slug, public_history=false)
$on-click$: $page.setting-actions.update-public-source(site_slug=$page.site.site-slug, public_source=false)



-- ds.heading-medium: Site: Public History Disabled
if: { !page.site.public-history }
-- ds.heading-medium: Source Is Private
if: { !page.site.public-source }

-- ds.copy-regular:
if: { !page.site.public-history }
if: { !page.site.public-source }

The site disabled **public history**. You would enable public-history to the site if you plan to give permission
to everyone to view the history of this site.
The site disabled **public source**. You would enable public-source to the site if you plan to give permission
to everyone to view the source of this site but they cannot edit the content of the site.


-- ds.danger-button: Enable Public History
if: { !page.site.public-history }
-- ds.danger-button: Make Source Public
if: { !page.site.public-source }
width: wide
radius: curved
$on-click$: $page.setting-actions.update-public-history(site_slug=$page.site.site-slug, public_history=true)
$on-click$: $page.setting-actions.update-public-source(site_slug=$page.site.site-slug, public_source=true)


;; ------------------------------- public-source -----------------------------------------------
-- ds.heading-medium: Site: Public Source Enabled
if: { page.site.public-source }

;; ------------------------------- public-history -----------------------------------------------
-- ds.heading-medium: History Is Visible To The World
if: { page.site.public-history && page.site.public-source }

-- ds.copy-regular:
if: { page.site.public-source }
if: { page.site.public-history && page.site.public-source }

By default sites on FifthTry disables **public source** but you, or someone in your team, enabled public-source
on this site. This means that you have given permission to everyone to view the source of this site but they
cannot edit the content of the site.
By default sites on FifthTry disables **public history** but you, or someone in your team, enabled public-history
on this site. This means that you have given permission to everyone to view the history of this site.

-- ds.danger-button: Disable Public Source
if: { page.site.public-source }
-- ds.heading-medium: History Will Be Visible To The World If Source Becomes Public
if: { page.site.public-history && !page.site.public-source }

-- ds.copy-regular:
if: { page.site.public-history && !page.site.public-source }

By default sites on FifthTry disables **public history** but you, or someone in your team, enabled public-history
on this site. This means that you have given permission to everyone to view the history of this site as soon as
you enable public-source. Currently public-source is disabled, so public-history is also disabled.

-- ds.danger-button: Make History Private
if: { page.site.public-history }
width: wide
radius: curved
$on-click$: $page.setting-actions.update-public-source(site_slug=$page.site.site-slug, public_source=false)
$on-click$: $page.setting-actions.update-public-history(site_slug=$page.site.site-slug, public_history=false)



-- ds.heading-medium: Site: Public Source Disabled
if: { !page.site.public-source }
-- ds.heading-medium: History Is Private
if: { !page.site.public-history && page.site.public-source }

-- ds.copy-regular:
if: { !page.site.public-source }
if: { !page.site.public-history && page.site.public-source }

The site disabled **public source**. You would enable public-source to the site if you plan to give permission
to everyone to view the source of this site but they cannot edit the content of the site.
The site disabled **public history**. You would enable public-history to the site if you plan to give permission
to everyone to view the history of this site.


-- ds.danger-button: Enable Public Source
if: { !page.site.public-source }
-- ds.danger-button: Make History Public
if: { !page.site.public-history && page.site.public-source }
width: wide
radius: curved
$on-click$: $page.setting-actions.update-public-source(site_slug=$page.site.site-slug, public_source=true)
$on-click$: $page.setting-actions.update-public-history(site_slug=$page.site.site-slug, public_history=true)

;; ------------------------------- is-package -----------------------------------------------
;;
Expand Down

0 comments on commit 7e0a35f

Please sign in to comment.