Commit 4b33a83d authored by Bamieh's avatar Bamieh Committed by Nicolas Giard

viewSource theme config

parent dca23726
......@@ -162,6 +162,7 @@ externalLogging:
theme:
primary: indigo
alt: blue-grey
viewSource: "all"
footer: blue-grey
code:
dark: true
......
......@@ -61,6 +61,7 @@ defaults:
primary: indigo
alt: blue-grey
footer: blue-grey
viewSource: "none"
code:
dark: true
colorize: true
......
......@@ -28,6 +28,7 @@ module.exports = (confPaths) => {
fs.readFileSync(confPaths.config, 'utf8')
)
)
appdata = yaml.safeLoad(fs.readFileSync(confPaths.data, 'utf8'))
appdata.regex = require(confPaths.dataRegex)
} catch (ex) {
......
......@@ -15,9 +15,10 @@ block rootNavRight
a.button.is-outlined(v-on:click='$store.dispatch("modalMovePage/open")')
i.nc-icon-outline.arrows-1_shuffle-98
span= t('nav.move')
a.button.is-outlined(href='/source/' + pageData.meta.path)
i.nc-icon-outline.education_paper
span= t('nav.source')
if appconfig.theme.viewSource == "all" || rights.write && appconfig.theme.viewSource == "write"
a.button.is-outlined(href='/source/' + pageData.meta.path)
i.nc-icon-outline.education_paper
span= t('nav.source')
//-a.button.is-outlined(href='/hist/' + pageData.meta.path)
i.nc-icon-outline.ui-2_time
span= t('nav.history')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment