Skip to content

Commit

Permalink
revert: connectivity browser use conn component
Browse files Browse the repository at this point in the history
revert: intents & compound features
fix: fsaverage ambiguous labels
fix: julichbrain 3.1 as default parcellation if nothing else is selected
  • Loading branch information
xgui3783 committed Jul 8, 2024
1 parent 7fdd6af commit 06dd4ce
Show file tree
Hide file tree
Showing 25 changed files with 1,487 additions and 1,063 deletions.
560 changes: 71 additions & 489 deletions src/atlasComponents/sapi/openapi.json

Large diffs are not rendered by default.

18 changes: 9 additions & 9 deletions src/atlasComponents/sapi/sapi.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export const EXPECTED_SIIBRA_API_VERSION = '0.3.16'

type PaginatedResponse<T> = {
items: T[]
total: number
total?: number
page?: number
size?: number
pages?: number
Expand Down Expand Up @@ -192,14 +192,14 @@ export class SAPI{
})
}

getFeatureIntents(id: string, params: Record<string, string> = {}) {
return this.v3Get("/feature/{feature_id}/intents", {
path: {
feature_id: id
},
query: params
})
}
// getFeatureIntents(id: string, params: Record<string, string> = {}) {
// return this.v3Get("/feature/{feature_id}/intents", {
// path: {
// feature_id: id
// },
// query: params
// })
// }

@CachedFunction({
serialization: (id, params) => `featDetail:${id}:${Object.entries(params || {}).map(([key, val]) => `${key},${val}`).join('.')}`
Expand Down
Loading

0 comments on commit 06dd4ce

Please sign in to comment.