feat: Add path on vikunja to redirect automaticaly on Authelia
This commit is contained in:
parent
762fd00da2
commit
e22fa7d706
|
@ -106,4 +106,5 @@ services:
|
||||||
icon: list-details
|
icon: list-details
|
||||||
description: Organiser vous autour de listes de tâches et rendre visible l'avancement de vos projets avec votre équipe.
|
description: Organiser vous autour de listes de tâches et rendre visible l'avancement de vos projets avec votre équipe.
|
||||||
subdomain: projets
|
subdomain: projets
|
||||||
|
path: '?redirectToProvider=true'
|
||||||
doc: /docs/nuage/gérer-vos-données/
|
doc: /docs/nuage/gérer-vos-données/
|
||||||
|
|
|
@ -43,7 +43,7 @@
|
||||||
{{ $url = print "https://" $defaultValues.subdomain "." site.Params.domain "/" }}
|
{{ $url = print "https://" $defaultValues.subdomain "." site.Params.domain "/" }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
<a
|
<a
|
||||||
href="{{ $url }}"
|
href="{{ $url }}{{ if $service.path }}{{ $service.path }}{{ else if $defaultValues.path }}{{ $defaultValues.path }}{{ end }}"
|
||||||
class="btn btn-primary"
|
class="btn btn-primary"
|
||||||
>
|
>
|
||||||
Accéder au service
|
Accéder au service
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
<a
|
<a
|
||||||
class="nav-link social-link"
|
class="nav-link social-link"
|
||||||
title="{{ $service.title | default $defaultValues.title }}"
|
title="{{ $service.title | default $defaultValues.title }}"
|
||||||
href="{{ $url }}"
|
href="{{ $url }}{{ if $service.path }}{{ $service.path }}{{ else if $defaultValues.path }}{{ $defaultValues.path }}{{ end }}"
|
||||||
>
|
>
|
||||||
{{- partial "inline-svg" $icon -}}
|
{{- partial "inline-svg" $icon -}}
|
||||||
<small class="ms-2 visually-hidden">{{ $service.title | default $defaultValues.title }}</small>
|
<small class="ms-2 visually-hidden">{{ $service.title | default $defaultValues.title }}</small>
|
||||||
|
|
Loading…
Reference in New Issue