Remove unused URL computed props

This commit is contained in:
Richard Bowman 2023-11-30 00:20:26 +00:00
parent 8de79ad7e8
commit b47ac8b828
2 changed files with 1 additions and 7 deletions

View file

@ -235,14 +235,11 @@ export default {
return `${this.$store.getters.baseUri}/stage/move_relative`;
},
zeroActionUri: function() {
return `${this.$store.getters.baseUri}/api/v2/actions/stage/zero`;
return `${this.$store.getters.baseUri}/stage/zero`;
},
positionStatusUri: function() {
return `${this.baseUri}/stage/position`;
},
pluginsUri: function() {
return `${this.$store.getters.baseUri}/api/v2/extensions`;
}
},
watch: {

View file

@ -59,9 +59,6 @@ export default {
streamImgUri: function() {
return `${this.$store.getters.baseUri}/camera/mjpeg_stream`;
},
settingsUri: function() {
return `${this.$store.getters.baseUri}/api/v2/instrument/settings`;
}
},
mounted() {