🚚 Moving or renaming files
This commit is contained in:
@@ -302,11 +302,11 @@
|
||||
</style>
|
||||
|
||||
<script>
|
||||
import AceEditor from "../components/ace-editor"
|
||||
import AceEditor from "../components/ui/ace-editor"
|
||||
|
||||
export default {
|
||||
components: {
|
||||
"pw-section": () => import("../components/section"),
|
||||
"pw-section": () => import("../components/layout/section"),
|
||||
Editor: AceEditor,
|
||||
},
|
||||
|
||||
|
||||
@@ -351,7 +351,7 @@ import axios from "axios"
|
||||
import * as gql from "graphql"
|
||||
import textareaAutoHeight from "../directives/textareaAutoHeight"
|
||||
import { commonHeaders } from "../functions/headers"
|
||||
import AceEditor from "../components/ace-editor"
|
||||
import AceEditor from "../components/ui/ace-editor"
|
||||
import QueryEditor from "../components/graphql/queryeditor"
|
||||
import { getPlatformSpecialKey } from "~/functions/platformutils"
|
||||
import { sendNetworkRequest } from "../functions/network"
|
||||
@@ -361,10 +361,10 @@ export default {
|
||||
textareaAutoHeight,
|
||||
},
|
||||
components: {
|
||||
"pw-section": () => import("../components/section"),
|
||||
"pw-section": () => import("../components/layout/section"),
|
||||
"gql-field": () => import("../components/graphql/field"),
|
||||
"gql-type": () => import("../components/graphql/type"),
|
||||
autocomplete: () => import("../components/autocomplete"),
|
||||
autocomplete: () => import("../components/ui/autocomplete"),
|
||||
Editor: AceEditor,
|
||||
QueryEditor: QueryEditor,
|
||||
},
|
||||
|
||||
@@ -1301,7 +1301,7 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import section from "../components/section"
|
||||
import section from "../components/layout/section"
|
||||
import url from "url"
|
||||
import querystring from "querystring"
|
||||
import { commonHeaders } from "../functions/headers"
|
||||
@@ -1310,7 +1310,7 @@ import parseCurlCommand from "../assets/js/curlparser.js"
|
||||
import getEnvironmentVariablesFromScript from "../functions/preRequest"
|
||||
import runTestScriptWithVariables from "../functions/postwomanTesting"
|
||||
import parseTemplateString from "../functions/templating"
|
||||
import AceEditor from "../components/ace-editor"
|
||||
import AceEditor from "../components/ui/ace-editor"
|
||||
import { tokenRequest, oauthRedirect } from "../assets/js/oauth"
|
||||
import { sendNetworkRequest } from "../functions/network"
|
||||
import { fb } from "../functions/fb"
|
||||
@@ -1370,10 +1370,10 @@ export default {
|
||||
},
|
||||
components: {
|
||||
"pw-section": section,
|
||||
"pw-toggle": () => import("../components/toggle"),
|
||||
"pw-modal": () => import("../components/modal"),
|
||||
history: () => import("../components/history"),
|
||||
autocomplete: () => import("../components/autocomplete"),
|
||||
"pw-toggle": () => import("../components/ui/toggle"),
|
||||
"pw-modal": () => import("../components/ui/modal"),
|
||||
history: () => import("../components/layout/history"),
|
||||
autocomplete: () => import("../components/ui/autocomplete"),
|
||||
collections: () => import("../components/collections"),
|
||||
saveRequestAs: () => import("../components/collections/saveRequestAs"),
|
||||
Editor: AceEditor,
|
||||
|
||||
@@ -1451,7 +1451,7 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import section from "../components/section"
|
||||
import section from "../components/layout/section"
|
||||
import url from "url"
|
||||
import querystring from "querystring"
|
||||
import { commonHeaders } from "../functions/headers"
|
||||
@@ -1460,7 +1460,7 @@ import parseCurlCommand from "../assets/js/curlparser.js"
|
||||
import getEnvironmentVariablesFromScript from "../functions/preRequest"
|
||||
import runTestScriptWithVariables from "../functions/postwomanTesting"
|
||||
import parseTemplateString from "../functions/templating"
|
||||
import AceEditor from "../components/ace-editor"
|
||||
import AceEditor from "../components/ui/ace-editor"
|
||||
import { tokenRequest, oauthRedirect } from "../assets/js/oauth"
|
||||
import { sendNetworkRequest } from "../functions/network"
|
||||
import { fb } from "../functions/fb"
|
||||
@@ -1524,9 +1524,9 @@ export default {
|
||||
components: {
|
||||
"pw-section": section,
|
||||
"pw-toggle": () => import("../components/toggle"),
|
||||
"pw-modal": () => import("../components/modal"),
|
||||
history: () => import("../components/history"),
|
||||
autocomplete: () => import("../components/autocomplete"),
|
||||
"pw-modal": () => import("../components/ui/modal"),
|
||||
history: () => import("../components/layout/history"),
|
||||
autocomplete: () => import("../components/ui/autocomplete"),
|
||||
collections: () => import("../components/collections"),
|
||||
saveRequestAs: () => import("../components/collections/saveRequestAs"),
|
||||
Editor: AceEditor,
|
||||
|
||||
@@ -168,7 +168,7 @@ div.log {
|
||||
<script>
|
||||
export default {
|
||||
components: {
|
||||
"pw-section": () => import("../components/section"),
|
||||
"pw-section": () => import("../components/layout/section"),
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
|
||||
@@ -211,8 +211,10 @@
|
||||
class="link"
|
||||
href="https://apollosoftware.xyz/legal/postwoman"
|
||||
target="_blank"
|
||||
rel="noopener">
|
||||
{{ $t("apollosw_privacy_policy") }} </a>.
|
||||
rel="noopener"
|
||||
>
|
||||
{{ $t("apollosw_privacy_policy") }} </a
|
||||
>.
|
||||
</p>
|
||||
</li>
|
||||
</ul>
|
||||
@@ -243,8 +245,8 @@ import { fb } from "../functions/fb"
|
||||
|
||||
export default {
|
||||
components: {
|
||||
"pw-section": () => import("../components/section"),
|
||||
"pw-toggle": () => import("../components/toggle"),
|
||||
"pw-section": () => import("../components/layout/section"),
|
||||
"pw-toggle": () => import("../components/ui/toggle"),
|
||||
swatch: () => import("../components/settings/swatch"),
|
||||
},
|
||||
|
||||
@@ -341,7 +343,8 @@ export default {
|
||||
|
||||
FRAME_COLORS_ENABLED: this.$store.state.postwoman.settings.FRAME_COLORS_ENABLED || false,
|
||||
PROXY_ENABLED: this.$store.state.postwoman.settings.PROXY_ENABLED || false,
|
||||
PROXY_URL: this.$store.state.postwoman.settings.PROXY_URL || "https://postwoman.apollosoftware.xyz/",
|
||||
PROXY_URL:
|
||||
this.$store.state.postwoman.settings.PROXY_URL || "https://postwoman.apollosoftware.xyz/",
|
||||
PROXY_KEY: this.$store.state.postwoman.settings.PROXY_KEY || "",
|
||||
|
||||
EXTENSIONS_ENABLED:
|
||||
@@ -641,8 +644,8 @@ export default {
|
||||
fb.writeSettings("syncEnvironments", true)
|
||||
},
|
||||
resetProxy({ target }) {
|
||||
this.settings.PROXY_URL = `https://postwoman.apollosoftware.xyz/`;
|
||||
target.innerHTML = this.doneButton;
|
||||
this.settings.PROXY_URL = `https://postwoman.apollosoftware.xyz/`
|
||||
target.innerHTML = this.doneButton
|
||||
this.$toast.info(this.$t("cleared"), {
|
||||
icon: "clear_all",
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user