mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
CR.
This commit is contained in:
parent
fa49c9e39f
commit
b3a8c0bbec
3 changed files with 4 additions and 53 deletions
|
@ -18,6 +18,9 @@ declare module "@vue/runtime-core" {
|
|||
|
||||
Log.info(Log.types.OTHER, "Bootstrapping Axios.");
|
||||
|
||||
// This is a necessary header to be passed to the Metaverse server in order for
|
||||
// it to fail with an HTTP error code instead of succeeding and returning
|
||||
// the error in JSON only.
|
||||
axios.defaults.headers.common = {
|
||||
"x-vircadia-error-handle": "badrequest"
|
||||
};
|
||||
|
|
|
@ -633,58 +633,6 @@
|
|||
</q-card-actions>
|
||||
</q-card>
|
||||
</q-step>
|
||||
|
||||
<!-- <q-step
|
||||
:name="8"
|
||||
title="Starter Content"
|
||||
caption=""
|
||||
:done="mainWizardStep > 8"
|
||||
>
|
||||
<q-card
|
||||
class="wizardCard"
|
||||
>
|
||||
<q-card-section>
|
||||
<div class="text-h6 text-weight-light text-center">Would you like a starter island in your Domain?</div>
|
||||
|
||||
<q-img
|
||||
src="../../assets/hq1.jpg"
|
||||
style="max-width: 400px; height: 200px;"
|
||||
fit="cover"
|
||||
></q-img>
|
||||
</q-card-section>
|
||||
|
||||
<q-card-section>
|
||||
<q-toggle
|
||||
v-model="starterContentToggle"
|
||||
checked-icon="check"
|
||||
color="red"
|
||||
label="Starter Content"
|
||||
unchecked-icon="clear"
|
||||
/>
|
||||
</q-card-section>
|
||||
|
||||
<q-card-actions vertical align="right">
|
||||
<q-btn
|
||||
@click="$refs.stepper.next()"
|
||||
class="q-mb-md"
|
||||
size="md"
|
||||
outline
|
||||
text-color="white"
|
||||
icon-right="chevron_right"
|
||||
>
|
||||
Next
|
||||
</q-btn>
|
||||
<q-btn
|
||||
@click="$refs.stepper.previous()"
|
||||
size="sm"
|
||||
flat
|
||||
icon="chevron_left"
|
||||
>
|
||||
Back
|
||||
</q-btn>
|
||||
</q-card-actions>
|
||||
</q-card>
|
||||
</q-step> -->
|
||||
</q-stepper>
|
||||
</transition>
|
||||
</div>
|
||||
|
|
|
@ -88,7 +88,7 @@ int DomainServer::_parentPID { -1 };
|
|||
|
||||
/// @brief Route a request to the Metaverse server.
|
||||
/// @param connection The HTTP connection object.
|
||||
/// @param requestUrl The full URL of the request.
|
||||
/// @param requestUrl The full URL of the request. e.g. https://google.com/api/v1/test
|
||||
/// @param metaversePath The path on the Metaverse server to route to.
|
||||
/// @param requestSubobjectKey The parent object key that any data will be inserted into for the forwarded request.
|
||||
/// @param requiredData The data that is required to be forwarded with this request.
|
||||
|
|
Loading…
Reference in a new issue