mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-13 03:56:39 +00:00
10 lines
243 B
HTML
10 lines
243 B
HTML
|
|
||
|
<script>
|
||
|
window.ENV = {};
|
||
|
window.ENV.server = window.location.protocol+"//"+window.location.host;
|
||
|
{{ if .csrf }}window.ENV.csrf = "{{ .csrf }}"{{ end }}
|
||
|
{{ if .user }}
|
||
|
window.USER = {{ json .user }};
|
||
|
{{ end }}
|
||
|
</script>
|