Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
siu
instalador
Commits
9a570379
Commit
9a570379
authored
Apr 08, 2022
by
Richard Dalinger
Browse files
Merge branch 'hotfix/v2.0.5'
parents
4ae2b4bd
d6cfc00f
Changes
4
Hide whitespace changes
Inline
Side-by-side
CHANGELOG.md
View file @
9a570379
...
...
@@ -4,6 +4,9 @@
[
CURRENT
](
/../compare/master...develop
)
[
v2.0.5
](
/../tree/v2.0.5
)
- 2022-04-07
*
Se corrige notice en la clase
`TobaPaso`
[
v2.0.4
](
/../tree/v2.0.4
)
- 2021-03-22
*
Se modifica workflow
`docker:db-actualizar`
para agregar paso de post-migracion.
*
Se modifica el metodo
`preMigrarProyectoToba::migrarProyecto`
y se elimina archivo copiado que cargaba asociacion entre usuarios y proyecto.
...
...
src/SIU/Instalador/Toba/Paso/ParametrizarToba.php
View file @
9a570379
...
...
@@ -224,6 +224,7 @@ class ParametrizarToba extends TobaPaso
$this
->
getContexto
()
->
set
(
'toba.instalar_referencia'
,
$this
->
parametros
[
'toba'
][
'instalar_referencia'
]);
$this
->
getContexto
()
->
set
(
'toba.forzar_https'
,
$this
->
parametros
[
'toba'
][
'forzar_https'
]);
$this
->
getContexto
()
->
set
(
'toba.nombre_dir_instalacion'
,
$this
->
parametros
[
'toba'
][
'nombre_dir_instalacion'
]);
$this
->
getContexto
()
->
set
(
'toba.url_base_port'
,
$this
->
parametros
[
'toba'
][
'url_base_port'
]);
}
/**
...
...
src/SIU/Instalador/Toba/Paso/TobaPaso.php
View file @
9a570379
...
...
@@ -75,7 +75,7 @@ abstract class TobaPaso extends Paso
$this
->
install_toba_editor
=
$this
->
getContexto
()
->
get
(
'toba.instalar_editor'
);
$this
->
install_toba_referencia
=
$this
->
getContexto
()
->
get
(
'toba.instalar_referencia'
);
$this
->
proyecto
=
$this
->
getContexto
()
->
get
(
'toba.proyecto'
);
$this
->
url_base
=
$this
->
parametros
[
'toba
'
][
'
url_base_port'
]
;
$this
->
url_base
=
$this
->
getContexto
()
->
get
(
'toba
.
url_base_port'
)
;
$this
->
proyecto_dir
=
$this
->
getContexto
()
->
get
(
'toba.proyecto_dir'
);
$this
->
forzar_https
=
$this
->
getContexto
()
->
get
(
'toba.forzar_https'
);
$this
->
nombre_dir_instalacion
=
$this
->
getContexto
()
->
get
(
'toba.nombre_dir_instalacion'
);
...
...
version
View file @
9a570379
v2.0.
4
v2.0.
5
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment