Skip to content

Dev #66

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 50 commits into from
Apr 1, 2025
Merged

Dev #66

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
50 commits
Select commit Hold shift + click to select a range
3bfb31d
Synchronizing code from bitbucket repository
fotisp Aug 20, 2024
eb2bbad
Removing TomSelect because it is no longer updated
fotisp Aug 20, 2024
c02bcfc
Fixing conflicts
fotisp Aug 20, 2024
5c7948c
Metric template remove restriction
vkefalas-exz Aug 26, 2024
ad9ee0b
Multiple environment variables fix
vkefalas-exz Aug 26, 2024
f23390c
Merge branch 'main' into dev
vkefalas-exz Aug 26, 2024
7a1d07c
- Setting dark mode by default in the login window
fotisp Aug 27, 2024
3d1eea4
Application saving and traversing through the ui fixed #8 #11
vkefalas-exz Sep 2, 2024
0fc74ba
Merge branch 'main' into dev
fotisp Sep 2, 2024
976df3d
Fixing ts errors on Error handling
fotisp Sep 2, 2024
4b18f96
Adding build specific information for better debugging
fotisp Sep 2, 2024
a3928c6
Added new button to duplicate application
vkefalas-exz Sep 10, 2024
69473ec
Bug fixes and improvements
vkefalas-exz Sep 27, 2024
beeb366
Added undeploy functionality
vkefalas-exz Oct 3, 2024
0a55ce0
trying to resolve merge conflicts
vkefalas-exz Oct 4, 2024
e943b86
Bug fixes,refactoring resources and added max tries in app polling
vkefalas-exz Oct 17, 2024
93d68a7
Fixing conflict
vkefalas-exz Oct 18, 2024
c5402ab
Fix in files in order to run pipeline
vkefalas-exz Oct 18, 2024
90c5f61
Some Resource Modal ui fixes
vkefalas-exz Oct 23, 2024
bda1c30
Merge branch 'main' into dev
vkefalas-exz Oct 23, 2024
5beacfa
feat-677
fotisp Jan 14, 2025
7f7aa98
feat-790
fotisp Jan 14, 2025
a09d653
Checking slot type to avoid typescript
fotisp Jan 14, 2025
1312f6f
Merge branch 'main' into dev
fotisp Jan 14, 2025
cf5e793
Mergin to cd (#49)
fotisp Jan 28, 2025
adb37e1
Dev (#47)
fotisp Jan 14, 2025
27a0efc
Dev (#50)
fotisp Jan 28, 2025
34c0a18
#31 - Opendev 677
fotisp Jan 28, 2025
57c3947
Merge remote-tracking branch 'origin/main' into dev
fotisp Jan 28, 2025
6960919
Adding CFSB to the UI
fotisp Feb 3, 2025
e188861
Merge branch 'main' into dev
fotisp Feb 3, 2025
e02104f
Merge remote-tracking branch 'origin/main' into dev
fotisp Feb 10, 2025
185ef6a
Fixing colors for states
fotisp Feb 10, 2025
bd22b63
Opendev feat 784
fotisp Feb 20, 2025
e54f6df
Merge branch 'main' into dev
fotisp Feb 20, 2025
4aa6aeb
Merge branch 'main' into dev
fotisp Feb 20, 2025
97915c1
Correcting build errors
fotisp Feb 20, 2025
1a72aa9
Merge branch 'main' into dev
fotisp Feb 20, 2025
0ccf9c3
Correcting build errors and loosening strictness
fotisp Feb 20, 2025
0ffcaf4
Merge branch 'main' into dev
fotisp Feb 20, 2025
b297251
Enabling clone button in all ocassions
fotisp Feb 20, 2025
cab53c3
Merge remote-tracking branch 'origin/main' into dev
fotisp Mar 11, 2025
958ef71
Fixing RAW output slide options
fotisp Mar 17, 2025
fa2aa2d
Merge remote-tracking branch 'origin/main' into dev
fotisp Mar 29, 2025
f59aa40
https://openproject.nebulouscloud.eu/projects/nebulous-2nd-release-1/…
fotisp Mar 29, 2025
b2276bd
Merge remote-tracking branch 'origin/main' into dev
fotisp Mar 29, 2025
ab2de5f
https://openproject.nebulouscloud.eu/projects/nebulous-2nd-release-1/…
fotisp Mar 29, 2025
8ddb60b
Fixing platforms bug
fotisp Apr 1, 2025
9c96edf
Fixing platforms
fotisp Apr 1, 2025
df28d57
Fixing conflict
fotisp Apr 1, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions gui/src/store/api-services/resources.service.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import axios from "axios"
import axios, {AxiosResponse} from "axios"
import {INodeCandidate, IResource} from "@/interfaces/resources.interface.ts"
import { IResourcePayload } from "@/types/resource.ts"
import { DeleteResponseType } from "@/types/responses.ts"
Expand All @@ -22,7 +22,7 @@ export default {
async deleteResource(uuid: string): Promise<DeleteResponseType> {
return axios.delete(`/api/v1/resources/${uuid}/uuid`).then(({ data }) => data)
},
async getPlatforms(): Promise<Array<IPlatform>> {
async getPlatforms(): Promise<AxiosResponse> {
return axios.get("/api/v1/platforms/all")
}
}
2 changes: 0 additions & 2 deletions gui/src/store/modules/application.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,6 @@ export const useApplicationStore = defineStore("application", {
type: SNACKBAR_MESSAGE_TYPES.SUCCESS,
});
}

console.log(`Updated application ${updatedApp.uuid} to status ${updatedApp.status}`);
}
});
},
Expand Down
3 changes: 2 additions & 1 deletion gui/src/store/modules/resources.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1201,7 +1201,8 @@ export const useResourceStore = defineStore("resource", {
})
},
async getPlatforms() {
this.platforms = await resourceService.getPlatforms()
const res = await resourceService.getPlatforms()
this.platforms = res.data
}
}
})