Skip to content

Commit

Permalink
Bring back functions removed in JENKINS-40964 that are required for u…
Browse files Browse the repository at this point in the history
…pgrade of existing config
  • Loading branch information
davidvanlaatum committed Feb 11, 2017
1 parent d136593 commit 3fc1960
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
Expand Up @@ -40,5 +40,10 @@ public String getDisplayName() {
public Config newConfig(@Nonnull String id) {
return new GroovyTemplateConfig(id, "Groovy Email Template", "", "");
}

@Override
protected String getXmlFileName() {
return "email-ext-groovy-config-files.xml";
}
}
}
Expand Up @@ -39,5 +39,10 @@ public String getDisplayName() {
public Config newConfig(@Nonnull String id) {
return new JellyTemplateConfig(id, "Jelly Email Template", "", "");
}
}

@Override
protected String getXmlFileName() {
return "email-ext-jelly-config-files.xml";
}
}
}

0 comments on commit 3fc1960

Please sign in to comment.