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

Commit b4f8463f authored by Akhil's avatar Akhil 🙂
Browse files

Merge branch 'fix-call-to-welcome' into 'main'

Remove headers

See merge request !28
parents 00f2621b 5567969f
Loading
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
include:
  - project: 'e/infra/ecloud/nextcloud-apps/ci-templates'
  - project: "e/infra/ecloud/nextcloud-apps/ci-templates"
    ref: main
    file: 'nc-apps-checkout-deploy.yml'
    file: "nc-apps-lint-build-frontend.yml"
  - project: "e/infra/ecloud/nextcloud-apps/ci-templates"
    ref: main
    file: "nc-apps-deploy.yml"
+1 −5
Original line number Diff line number Diff line
@@ -132,11 +132,7 @@ class UserService
                'email' => $email
            ];

            $headers = array(
                'Content-Type: application/json'
            );

            $answer = $this->curl->post($postDeleteUrl, $params, $headers);
            $answer = $this->curl->post($postDeleteUrl, $params);

            return json_decode($answer, true);
        } catch (\Exception $e) {
+0 −1
Original line number Diff line number Diff line
@@ -15,7 +15,6 @@
				"@nextcloud/password-confirmation": "^1.0.1",
				"@nextcloud/router": "^2.0.0",
				"@nextcloud/vue": "^5.4.0",
				"lodash": "^4.17.21",
				"vue": "^2.7.8"
			},
			"devDependencies": {
+0 −1
Original line number Diff line number Diff line
@@ -25,7 +25,6 @@
		"@nextcloud/password-confirmation": "^1.0.1",
		"@nextcloud/router": "^2.0.0",
		"@nextcloud/vue": "^5.4.0",
		"lodash": "^4.17.21",
		"vue": "^2.7.8"
	},
	"browserslist": [
+8 −9
Original line number Diff line number Diff line
@@ -66,7 +66,6 @@ import SettingsSection from '@nextcloud/vue/dist/Components/SettingsSection.js'
import Axios from '@nextcloud/axios'
import { generateUrl } from '@nextcloud/router'
import { showError } from '@nextcloud/dialogs'
import { debounce } from 'lodash'

export default {
	name: 'PersonalSettings',
@@ -171,9 +170,9 @@ export default {
				return { status: err.response.status, data: err.response.data }
			}
		},
		updateEmailPostDelete: async function(event) {
		async updateEmailPostDelete(event) {
			if (document.activeElement === event.target) {
				return;
				return
			}
			if (this.shopEmailPostDelete === this.userEmail) {
				showError(
@@ -189,7 +188,7 @@ export default {
					showError(
						t(
							'ecloud-accounts',
							data['message']
							data.message
						)
					)
				} else {
Loading