Skip to content

Commit

Permalink
MGR-133
Browse files Browse the repository at this point in the history
  • Loading branch information
madness-inc authored and Matthias Müller committed Oct 25, 2022
1 parent d26802e commit e32ca5d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions application-home/conf/events/ev-repositories.xml
Expand Up @@ -78,7 +78,7 @@
<param name="form_action" />
</params>
</config>
<condition expression="${form_action eq 'delete-repository'}" />
<condition expression="${form_action eq 'delete-repository' and not empty repositoryid}" />
<bean id="repositories">
<option name="repository" id="${repositoryid}" />
<option name="action" id="delete" />
Expand Down Expand Up @@ -117,7 +117,7 @@
<param name="timestamp" />
</params>
</config>
<condition expression="${form_action eq 'install'}" />
<condition expression="${form_action eq 'install' and not empty repositoryid and not empty name and not empty version}" />
<bean id="installation">
<option name="repository" id="${repositoryid}" />
<option name="package" packageName="${name}" packageVersion="${version}" packageTimestamp="${timestamp}" />
Expand All @@ -139,7 +139,7 @@
<param name="timestamp" />
</params>
</config>
<condition expression="${form_action eq 'delete-package'}" />
<condition expression="${form_action eq 'delete-package' and not empty repositoryid and not empty name and not empty version and not empty timestamp}" />
<bean id="installation">
<option name="repository" id="${repositoryid}" />
<option name="package" packageName="${name}" packageVersion="${version}" packageTimestamp="${timestamp}" />
Expand Down

0 comments on commit e32ca5d

Please sign in to comment.