Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5a5fb3c0 authored by Akhil's avatar Akhil 🙂
Browse files

(feat) add API parameter for B2B newsletter

parent 8a518937
Loading
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -136,3 +136,10 @@ The values should be set as follows:
  - `oidc_admin_password` (password of admin account)
  - `oidc_login_provider_url` (provider URL: see also https://github.com/pulsejet/nextcloud-oidc-login)
  - `oidc_admin_sync_2fa` -> (set to boolean value true to enable sync; defaults to false)

## Newsletter signup configuration:

- `occ config:system:set newsletter_base_url --value='https://abcd'`: should be set to the newsletter API's base url
- `occ config:system:set newsletter_list_ids eos --value=1234`: should be set to the list ID for the eOS newsletter
- `occ config:system:set newsletter_list_ids product --value=1234 --type=integer` should be set to the list ID for the shop newsletter
- `occ config:system:set newsletter_list_ids b2b --value=1234 --type=integer` should be set to the list ID for the B2B newsletter
+1 −1
Original line number Diff line number Diff line
@@ -85,6 +85,6 @@ OC.L10N.register(
		"Username is too large.": "Der Benutzername ist zu groß.",
		"Display name is too large.": "Der Anzeigename ist zu groß.",
		"Password has invalid characters.": "Das Passwort enthält ungültige Zeichen.",
		"I want to stay informed about Murena for business offers": "Ich möchte Informationen über Murenas Angebote erhalten"
		"I want to stay informed about Murena for business offers.": "Ich möchte Informationen über Murenas Angebote erhalten."
	},
	"nplurals=2; plural=(n != 1);");
+1 −1
Original line number Diff line number Diff line
@@ -83,7 +83,7 @@
		"Username is too large.": "Der Benutzername ist zu groß.",
		"Display name is too large.": "Der Anzeigename ist zu groß.",
		"Password has invalid characters.": "Das Passwort enthält ungültige Zeichen.",
		"I want to stay informed about Murena for business offers": "Ich möchte Informationen über Murenas Angebote erhalten"
		"I want to stay informed about Murena for business offers.": "Ich möchte Informationen über Murenas Angebote erhalten."
	},
	"pluralForm": "nplurals=2; plural=(n != 1);"
}
+1 −1
Original line number Diff line number Diff line
@@ -85,6 +85,6 @@ OC.L10N.register(
		"Username is too large.": "Der Benutzername ist zu groß.",
		"Display name is too large.": "Der Anzeigename ist zu groß.",
		"Password has invalid characters.": "Das Passwort enthält ungültige Zeichen.",
		"I want to stay informed about Murena for business offers": "Ich möchte Informationen über Murenas Angebote erhalten"
		"I want to stay informed about Murena for business offers.": "Ich möchte Informationen über Murenas Angebote erhalten."
	},
	"nplurals=2; plural=(n != 1);");
+1 −1
Original line number Diff line number Diff line
@@ -83,7 +83,7 @@
		"Username is too large.": "Der Benutzername ist zu groß.",
		"Display name is too large.": "Der Anzeigename ist zu groß.",
		"Password has invalid characters.": "Das Passwort enthält ungültige Zeichen.",
		"I want to stay informed about Murena for business offers": "Ich möchte Informationen über Murenas Angebote erhalten"
		"I want to stay informed about Murena for business offers.": "Ich möchte Informationen über Murenas Angebote erhalten."
	},
	"pluralForm": "nplurals=2; plural=(n != 1);"
}
Loading