Skip to content

Commit 078267a

Browse files
author
subzdev
committed
massive cleanup of files and restructure of integrations design
1 parent 8d41f2b commit 078267a

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed

docker/containers/tactical-nginx/entrypoint.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,8 +168,12 @@ server {
168168
169169
location / {
170170
#Using variable to disable start checks
171+
<<<<<<< HEAD
171172
<<<<<<< HEAD
172173
set \$meshcentral http://{$MESH_SERVICE}:443;
174+
=======
175+
set \$meshcentral http://${MESH_SERVICE}:443;
176+
>>>>>>> 2c9d413a1a0d4d3715ac77ea408c94d156899e83
173177
=======
174178
set \$meshcentral http://${MESH_SERVICE}:443;
175179
>>>>>>> 2c9d413a1a0d4d3715ac77ea408c94d156899e83

web/src/components/agents/AgentActionMenu.vue

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@
4747
</q-menu>
4848
</q-item>
4949

50+
<<<<<<< HEAD
5051
<!-- integrations -->
5152
<q-item clickable v-close-popup @click="getAgentIntegrations(agent)">
5253
<q-item-section side>
@@ -55,12 +56,18 @@
5556
<q-item-section>Integrations</q-item-section>
5657
</q-item>
5758

59+
=======
60+
>>>>>>> 2c9d413a1a0d4d3715ac77ea408c94d156899e83
5861
<q-item clickable v-ripple v-close-popup @click="showSendCommand(agent)">
5962
<q-item-section side>
6063
<q-icon size="xs" name="fas fa-terminal" />
6164
</q-item-section>
6265
<q-item-section>Send Command</q-item-section>
6366
</q-item>
67+
<<<<<<< HEAD
68+
=======
69+
70+
>>>>>>> 2c9d413a1a0d4d3715ac77ea408c94d156899e83
6471
<q-item clickable v-ripple v-close-popup @click="showRunScript(agent)">
6572
<q-item-section side>
6673
<q-icon size="xs" name="fas fa-terminal" />
@@ -190,7 +197,10 @@
190197
</template>
191198

192199
<script>
200+
<<<<<<< HEAD
193201
import axios from "axios";
202+
=======
203+
>>>>>>> 2c9d413a1a0d4d3715ac77ea408c94d156899e83
194204
// composition imports
195205
import { ref, inject } from "vue";
196206
import { useStore } from "vuex";
@@ -217,7 +227,10 @@ import RebootLater from "@/components/modals/agents/RebootLater";
217227
import EditAgent from "@/components/modals/agents/EditAgent";
218228
import SendCommand from "@/components/modals/agents/SendCommand";
219229
import RunScript from "@/components/modals/agents/RunScript";
230+
<<<<<<< HEAD
220231
import AgentIntegrations from "@/components/modals/agents/AgentIntegrations";
232+
=======
233+
>>>>>>> 2c9d413a1a0d4d3715ac77ea408c94d156899e83
221234
222235
export default {
223236
name: "AgentActionMenu",
@@ -446,6 +459,7 @@ export default {
446459
}
447460
});
448461
}
462+
<<<<<<< HEAD
449463
function getAgentIntegrations(agent) {
450464
axios
451465
.get("agents/" + props.agent.agent_id + "/")
@@ -480,19 +494,28 @@ export default {
480494
console.log(e)
481495
});
482496
}
497+
=======
498+
>>>>>>> 2c9d413a1a0d4d3715ac77ea408c94d156899e83
483499
484500
return {
485501
// reactive data
486502
urlActions,
487503
favoriteScripts,
504+
<<<<<<< HEAD
505+
=======
506+
507+
>>>>>>> 2c9d413a1a0d4d3715ac77ea408c94d156899e83
488508
// methods
489509
showEditAgent,
490510
showPendingActionsModal,
491511
runTakeControl,
492512
runRemoteBackground,
493513
getURLActions,
494514
runURLAction,
515+
<<<<<<< HEAD
495516
getAgentIntegrations,
517+
=======
518+
>>>>>>> 2c9d413a1a0d4d3715ac77ea408c94d156899e83
496519
showSendCommand,
497520
showRunScript,
498521
getFavoriteScripts,

0 commit comments

Comments
 (0)