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

Verified Commit fb9ed76d authored by Nicolas Gelot's avatar Nicolas Gelot
Browse files

fix(theming): align Murena branding defaults

Update the theme defaults exposed through the Nextcloud theming admin panel so the entity, base URL and slogan match Murena branding instead of the legacy e Foundation values.
parent 0d8d4906
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -25,7 +25,7 @@ class OC_Theme {
	 * @return string URL
	 */
	public function getBaseUrl() {
		return 'https://e.foundation';
		return 'https://murena.com';
	}

	/**
@@ -65,7 +65,7 @@ class OC_Theme {
	 * @return string entity name
	 */
	public function getEntity() {
		return 'e Foundation';
		return 'Murena';
	}

	/**
@@ -73,7 +73,7 @@ class OC_Theme {
	 * @return string slogan
	 */
	public function getSlogan() {
		return 'Choose freedom';
		return 'Freedom starts with privacy.';
	}

	/**