Skip to content
Snippets Groups Projects
Commit f3511c8a authored by Piotr Gawron's avatar Piotr Gawron
Browse files

parameter for request account email content

parent 4c7f34c3
No related branches found
No related tags found
1 merge request!194Resolve "Account request - prefilled text"
......@@ -18,10 +18,15 @@ public enum ConfigurationElementEditType {
*/
INTEGER,
/**
* String value.
*/
STRING,
/**
* String value.
*/
STRING,
/**
* Multiple line text value.
*/
TEXT,
/**
* Color value (for color picker).
......
......@@ -144,7 +144,16 @@ public enum ConfigurationElementType {
* Opacity of data overlay objects in the frontend.
*/
OVERLAY_OPACITY("Opacity used when drwaing data overlays (value between 0.0-1.0)", "0.8",
ConfigurationElementEditType.DOUBLE, false),;
ConfigurationElementEditType.DOUBLE, false),
/**
* Default content of the email when requesting for an account in the system.
*/
REQUEST_ACCOUNT_DEFAULT_CONTENT("Email content used for requesting an account",
"Dear Diseas map team,\nI would like to request for an account.\nKind regards", ConfigurationElementEditType.TEXT,
false),
;
/**
* Default value of the configuration parameter (it will be used only when value
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment